diff options
Diffstat (limited to 'modules/upload')
-rw-r--r-- | modules/upload/upload.module | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index fcd2f5a92..c35776426 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -340,6 +340,8 @@ function upload_nodeapi(&$node, $op, $teaser) { /** * Displays file attachments in table + * + * @ingroup themeable */ function theme_upload_attachments($files) { $header = array(t('Attachment'), t('Size')); @@ -517,6 +519,8 @@ function _upload_form($node) { /** * Theme the attachments list. + * + * @ingroup themeable */ function theme_upload_form_current(&$form) { $header = array('', t('Delete'), t('List'), t('Description'), t('Weight'), t('Size')); @@ -542,6 +546,8 @@ function theme_upload_form_current(&$form) { /** * Theme the attachment form. * Note: required to output prefix/suffix. + * + * @ingroup themeable */ function theme_upload_form_new($form) { $output = drupal_render($form); |