Page 1 of 1

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

Posted: August 18th, 2023, 12:37 am
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"

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

Posted: August 18th, 2023, 1:02 am
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.',