I was getting access denied on node/%/feed urls.
I modified the code at line 268:
....
$items['node/%/feed'] = array(
'title' => 'RSS feed',
'page callback' => 'category_feed',
'page arguments' => array(1),
+ 'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
'file' => 'category.pages.inc',
.....
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | cat-feed-access.patch | 488 bytes | JirkaRybka |
Comments
Comment #1
totoforte commentedin category.module file
Comment #2
totoforte commentedComment #3
JirkaRybka commentedI agree - the 'access arguments' part was obviously missing. I also confirm, that there was the Access Denied problem, and it's fixed by the change.
Attaching a proper patch, which is just a reroll from the initial post, no changes. It's tiny and trivial, and works, so RTBC.
Comment #4
Jaza commentedCommitted to HEAD. Thanks.