Page 1 of 1

(solved) Trying to access array offset on value of type bool in ext/pgreca/pgsocial/social/post_status.php

Posted: August 1st, 2023, 9:57 pm
by Mandi
When trying out the "Like" status feature I received this error:
[phpBB Debug] PHP Warning: in file [ROOT]/ext/pgreca/pgsocial/social/post_status.php on line 753: Trying to access array offset on value of type bool

Re: Trying to access array offset on value of type bool in ext/pgreca/pgsocial/social/post_status.php

Posted: August 1st, 2023, 10:00 pm
by Mandi
Locate line 753 which looks like this:

Code: Select all

if ($row['post_like_ID'] != '')
Replace with this:

Code: Select all

if ($row['post_like_ID'] ?? null != '')