Quote:
Originally Posted by gio~logist
I noticed if i create a private journal, logged in members cannot see journal OR entries (like its suppose to be), however, guests can see the journal (it just wont list the entries) and if they click the "latest entry" link in someone's profile, they can see the entry. KEEP IN MIND EVERYTHING (JOURNAL AND ENTRY) WAS PRIVATE AND I MADE SURE!
|
Around line 1146 of journal.php
FIND
PHP Code:
if(($bbuserinfo['usergroupid']==6) OR ($bbuserinfo['userid']==$entry['journalist_id']) OR (in_array($bbuserinfo['userid'], array($entry['jwcv']))))
REPLACE that with
PHP Code:
if(($bbuserinfo['usergroupid']==6) OR ($bbuserinfo['userid']==$entry['journalist_id']) OR ($bbuserinfo['userid'] AND in_array($bbuserinfo['userid'], array($entry['jwcv']))))
This should fix the Problem.