function comment_upload_perm in Comment Upload 6
Implementation of hook_perm().
File
- ./
comment_upload.module, line 37 - Provides file attachment functionality for comments.
Code
function comment_upload_perm() {
return array(
'upload files to comments',
'view files uploaded to comments',
);
}