Multiple php warnings on view profile page (as regular member)

For assistance with the phpBB Wall extension
Post Reply
User avatar
Mandi
Site Admin
Site Admin
Posts: 47
Joined: July 31st, 2023, 8:37 pm
Location: Somewhere, Canada
Contact:

Multiple php warnings on view profile page (as regular member)

Post by Mandi »

Logged in as regular member, when logged in viewing own profile produced these php warnings:

Code: Select all

[phpBB Debug] PHP Warning: in file [ROOT]/ext/msaulohenrique/wall/controller/main.php on line 478: Trying to access array offset on value of type bool
[phpBB Debug] PHP Warning: in file [ROOT]/ext/msaulohenrique/wall/controller/main.php on line 479: Trying to access array offset on value of type bool
[phpBB Debug] PHP Warning: in file [ROOT]/ext/msaulohenrique/wall/controller/main.php on line 480: Trying to access array offset on value of type bool
[phpBB Debug] PHP Warning: in file [ROOT]/ext/msaulohenrique/wall/controller/main.php on line 481: Trying to access array offset on value of type bool
User avatar
Mandi
Site Admin
Site Admin
Posts: 47
Joined: July 31st, 2023, 8:37 pm
Location: Somewhere, Canada
Contact:

Re: Multiple php warnings on view profile page (as regular member)

Post by Mandi »

Fix for the warnings is find lines from 478 to 481 which looks like this:

Code: Select all

                             'LOCATION'		        => $field['pf_phpbb_location'],	
                             'OCCUPATION'   	    => $field['pf_phpbb_occupation'],
							 'FACEBOOK'		        => $field['pf_phpbb_facebook'],	
                             'WEBSITE'  		    => $field['pf_phpbb_website'],
Replace with this:

Code: Select all

                             'LOCATION'		        => $field['pf_phpbb_location'] ?? null,	
                             'OCCUPATION'   	    => $field['pf_phpbb_occupation'] ?? null,
							 'FACEBOOK'		        => $field['pf_phpbb_facebook'] ?? null,	
                             'WEBSITE'  		    => $field['pf_phpbb_website'] ?? null,
Post Reply