Found a small typo in function feeds_page_access() in feeds.module, but it could disallow some users to get access to the feed page.
line 193:
if (user_access("import $id feed")) {
should be
if (user_access("import $id feeds")) {
Found a small typo in function feeds_page_access() in feeds.module, but it could disallow some users to get access to the feed page.
line 193:
if (user_access("import $id feed")) {
should be
if (user_access("import $id feeds")) {
Comments
Comment #1
alex_b commentedThat's committed, thank you http://drupal.org/node/885052