Topic: index.php - Change request

index.php (line 88)

change:
'WHERE'        => 'fp.read_forum IS NULL OR fp.read_forum=1',

to:
'WHERE'        => '(fp.read_forum IS NULL OR fp.read_forum=1)',

in order to add an AND condition.

Re: index.php - Change request

In your hook, couldn't you just do $query['WHERE'] = '('.$query['WHERE'].') AND <your stuff>';?

Re: index.php - Change request

Nice one! Thank you.