function theme_upload_form_new in Drupal 5
Same name and namespace in other branches
- 4 modules/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/ upload.module, line 837 - File-handling and attaching files to nodes.
Code
function theme_upload_form_new($form) {
$output = drupal_render($form);
return $output;
}