When uploading a photo to an album, this error popped up:
[phpBB Debug] PHP Warning: in file [ROOT]/ext/pgreca/pgsocial/social/social_photo.php on line 758: Trying to access array offset on value of type bool
[phpBB Debug] PHP Warning: in file [ROOT]/ext/pgreca/pgsocial/social/social_photo.php on line 758: Trying to access array offset on value of type bool
(solved) Photo upload to album, another bool error
Re: Photo upload to album, another bool error
Locate line 758 which looks like this:
Replace with this:
Code: Select all
if ($row['photo_id'])Code: Select all
if ($row['photo_id'] ?? null)