summaryrefslogtreecommitdiff
path: root/modules/upload
diff options
context:
space:
mode:
Diffstat (limited to 'modules/upload')
-rw-r--r--modules/upload/upload.module10
1 files changed, 8 insertions, 2 deletions
diff --git a/modules/upload/upload.module b/modules/upload/upload.module
index 3e4049f63..0c8e79227 100644
--- a/modules/upload/upload.module
+++ b/modules/upload/upload.module
@@ -44,8 +44,14 @@ function upload_theme() {
*/
function upload_perm() {
return array(
- 'upload files' => t('Attach images and other files to content.'),
- 'view uploaded files' => t('View and download files attached to content.'),
+ 'upload files' => array(
+ 'title' => t('Upload files'),
+ 'description' => t('Attach images and other files to content.'),
+ ),
+ 'view uploaded files' => array(
+ 'title' => t('View uploaded files'),
+ 'description' => t('View and download files attached to content.'),
+ ),
);
}