summaryrefslogtreecommitdiff
path: root/modules/aggregator/aggregator.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/aggregator/aggregator.module')
-rw-r--r--modules/aggregator/aggregator.module5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module
index 0475edba8..ba8344a8a 100644
--- a/modules/aggregator/aggregator.module
+++ b/modules/aggregator/aggregator.module
@@ -277,7 +277,10 @@ function _aggregator_has_categories() {
* Implementation of hook_perm().
*/
function aggregator_perm() {
- return array('administer news feeds', 'access news feeds');
+ return array(
+ 'administer news feeds' => t('Add, edit or delete news feeds that are aggregated to your site.'),
+ 'access news feeds' => t('View aggregated news feed items.'),
+ );
}
/**