Page 1 of 1

(solved) Bool error upon page creation

Posted: August 15th, 2023, 11:41 pm
by Mandi
This bool error showed up when creating a page (and page is pending approval)

[phpBB Debug] PHP Warning: in file [ROOT]/ext/pgreca/pgsocial/controller/pages.php on line 194: Trying to access array offset on value of type bool

Re: Bool error upon page creation

Posted: August 15th, 2023, 11:55 pm
by Mandi
Locate line 194 which looks like this:

Code: Select all

'GALLERY_NAME'				=> $this->social_photo->gallery_info($this->request->variable('gall', ''))['gallery_name'],
Replace with this:

Code: Select all

'GALLERY_NAME'				=> $this->social_photo->gallery_info($this->request->variable('gall', ''))['gallery_name'] ?? null,