aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/language/en/acp/groups.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2005-12-12 23:17:30 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2005-12-12 23:17:30 +0000
commite4defede57bcde636ee7afb59e0e9a385f7f4a13 (patch)
tree0ca637e6d650147cd257f35062ea3c47c7be2326 /phpBB/language/en/acp/groups.php
parentc12fd5d434c9a3cda6bedb2d450243b278cd5dcb (diff)
downloadforums-e4defede57bcde636ee7afb59e0e9a385f7f4a13.tar
forums-e4defede57bcde636ee7afb59e0e9a385f7f4a13.tar.gz
forums-e4defede57bcde636ee7afb59e0e9a385f7f4a13.tar.bz2
forums-e4defede57bcde636ee7afb59e0e9a385f7f4a13.tar.xz
forums-e4defede57bcde636ee7afb59e0e9a385f7f4a13.zip
- 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
Diffstat (limited to 'phpBB/language/en/acp/groups.php')
-rw-r--r--phpBB/language/en/acp/groups.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/phpBB/language/en/acp/groups.php b/phpBB/language/en/acp/groups.php
index 1f0061f092..7035466cb8 100644
--- a/phpBB/language/en/acp/groups.php
+++ b/phpBB/language/en/acp/groups.php
@@ -28,7 +28,7 @@ if (empty($lang) || !is_array($lang))
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
-$lang += array(
+$lang = array_merge($lang, array(
'ACP_GROUPS_MANAGE_EXPLAIN' => 'From this panel you can administer all your usergroups, you can delete, create and edit existing groups. You may choose moderators, toggle open/closed group status and set the group name and description.',
'ADD_USERS' => 'Add Users',
'ADD_USERS_EXPLAIN' => 'Here you can add new users to the group. You may select whether this group becomes the new default for the selected users. Additionally you can define them as group leaders. Please enter each username on a seperate line.',
@@ -104,8 +104,6 @@ $lang += array(
'USER_GROUP_DEFAULT' => 'Set as default group',
'USER_GROUP_DEFAULT_EXPLAIN' => 'Saying yes here will set this group as the default group for the added users',
'USER_GROUP_LEADER' => 'Set as group leader',
-);
-
-// 'FORCE_COLOR' => 'Force update',
+));
?> \ No newline at end of file