diff options
Diffstat (limited to 'modules/upload/upload.module')
-rw-r--r-- | modules/upload/upload.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module index 07aed8d65..9772598d4 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -77,7 +77,7 @@ function upload_menu($may_cache) { 'type' => MENU_CALLBACK ); $items[] = array('path' => 'admin/settings/uploads', - 'title' => t('file uploads'), + 'title' => t('File uploads'), 'description' => t('Control how files may be attached to content.'), 'callback' => 'drupal_get_form', 'callback arguments' => array('upload_admin_settings'), @@ -98,7 +98,7 @@ function upload_menu($may_cache) { } $items[] = array( - 'path' => $filename, 'title' => t('file download'), + 'path' => $filename, 'title' => t('File download'), 'callback' => 'upload_download', 'access' => user_access('view uploaded files'), 'type' => MENU_CALLBACK |