function theme_upload_form_new in Drupal 4
Same name and namespace in other branches
- 5 modules/upload/upload.module \theme_upload_form_new()
- 6 modules/upload/upload.module \theme_upload_form_new()
Theme the attachment form. Note: required to output prefix/suffix.
File
- modules/
upload.module, line 732 - File-handling and attaching files to nodes.
Code
function theme_upload_form_new($form) {
$output = form_render($form);
return $output;
}