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
(solved) Trying to access array offset on value of type bool in ext/pgreca/pgsocial/social/post_status.php
Re: Trying to access array offset on value of type bool in ext/pgreca/pgsocial/social/post_status.php
Locate line 753 which looks like this:
Replace with this:
Code: Select all
if ($row['post_like_ID'] != '')Code: Select all
if ($row['post_like_ID'] ?? null != '')