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
(solved) Bool error upon page creation
Re: Bool error upon page creation
Locate line 194 which looks like this:
Replace with this:
Code: Select all
'GALLERY_NAME' => $this->social_photo->gallery_info($this->request->variable('gall', ''))['gallery_name'],Code: Select all
'GALLERY_NAME' => $this->social_photo->gallery_info($this->request->variable('gall', ''))['gallery_name'] ?? null,