Warning when clicking a member to view profile when not logged in

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:

Warning when clicking a member to view profile when not logged in

Post by Mandi »

If you are not logged in and click a member name to view profile, this warning showed up

Code: Select all

[phpBB Debug] PHP Warning: in file [ROOT]/ext/msaulohenrique/wall/controller/main.php on line 113: Undefined array key "LOGIN_EXPLAIN_MEMBERLIST"
User avatar
Mandi
Site Admin
Site Admin
Posts: 47
Joined: July 31st, 2023, 8:37 pm
Location: Somewhere, Canada
Contact:

Re: Warning when clicking a member to view profile when not logged in

Post by Mandi »

To fix this, open the wall/language/en folder and locate common.php. Open that file and at the end before this:

Code: Select all

));
add the following:

Code: Select all

// Language Taken From default pbpBB

	'LOGIN_EXPLAIN_TEAM'		=> 'The board requires you to be registered and logged in to view the team listing.',
	'LOGIN_EXPLAIN_MEMBERLIST'	=> 'The board requires you to be registered and logged in to access the memberlist.',
	'LOGIN_EXPLAIN_SEARCHUSER'	=> 'The board requires you to be registered and logged in to search users.',
	'LOGIN_EXPLAIN_VIEWPROFILE'	=> 'The board requires you to be registered and logged in to view profiles.',
Post Reply