When viewing regular user profile this error showed up
[phpBB Debug] PHP Warning: in file [ROOT]/ext/pgreca/pgsocial/social/social_zebra.php on line 96: Trying to access array offset on value of type bool
(solved) Viewing regular user profile error
Re: Viewing regular user profile error
Locate line 96 which looks like this:
Replace with this:
Code: Select all
'PROFILE_FRIEND_ACTION' => $this->friend_status($row['user_id'])['status'],Code: Select all
'PROFILE_FRIEND_ACTION' => $this->friend_status($row['user_id'])['status'] ?? null,