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

jaydub’s picture

Status: Active » Fixed

nice catch. fixed in CVS.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.