diff options
Diffstat (limited to 'modules/upload')
-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 32e337752..43ae3f2f3 100644 --- a/modules/upload/upload.module +++ b/modules/upload/upload.module @@ -10,8 +10,8 @@ /** * Implementation of hook_help(). */ -function upload_help($section) { - switch ($section) { +function upload_help($path, $arg) { + switch ($path) { case 'admin/help#upload': $output = '<p>'. t('The upload module allows users to upload files to the site. The ability to upload files to a site is important for members of a community who want to share work. It is also useful to administrators who want to keep uploaded files connected to a node or page.') .'</p>'; $output .= '<p>'. t('Users with the upload files permission can upload attachments. You can choose which post types can take attachments on the content types settings page. Each user role can be customized for the file size of uploads, and the dimension of image files.') .'</p>'; |