mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-13 04:04:12 +02:00
- forum administration (now working and modified for easier handling the different forum types [UI])
- Changed += for arrays into array_merge. We do not want to append, we want to merge. ;) git-svn-id: file:///svn/phpbb/trunk@5330 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -29,7 +29,7 @@ if (empty($lang) || !is_array($lang))
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Banning
|
||||
$lang += array(
|
||||
$lang = array_merge($lang, array(
|
||||
'1_HOUR' => '1 Hour',
|
||||
'30_MINS' => '30 Minutes',
|
||||
'6_HOURS' => '6 Hours',
|
||||
@@ -65,6 +65,6 @@ $lang += array(
|
||||
'USER_NO_BANNED' => 'No banned usernames',
|
||||
'USER_UNBAN' => 'Un-ban or Un-exclude usernames',
|
||||
'USER_UNBAN_EXPLAIN' => 'You can unban (or un-exclude) multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded users have a grey background.',
|
||||
);
|
||||
));
|
||||
|
||||
?>
|
Reference in New Issue
Block a user