Hey Guys,
I was receiving an error in my SQL statements and found the problem was on line 50 of the commentactivity.module
Before:
if ($activity['data']['module'] == 'commentactivity' && !node_access('view', node_load($activity['data']['parent-nid']))) {
After:
if ($activity['data']['module'] == 'commentactivity' && !node_access('view', node_load($activity['data']['parent-node-id']))) {
Cheers
Comments
Comment #1
jaydub commentednice catch. fixed in CVS.