diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-12 23:17:30 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-12-12 23:17:30 +0000 |
| commit | e4defede57bcde636ee7afb59e0e9a385f7f4a13 (patch) | |
| tree | 0ca637e6d650147cd257f35062ea3c47c7be2326 /phpBB/language/en/acp/email.php | |
| parent | c12fd5d434c9a3cda6bedb2d450243b278cd5dcb (diff) | |
| download | forums-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/email.php')
| -rw-r--r-- | phpBB/language/en/acp/email.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/language/en/acp/email.php b/phpBB/language/en/acp/email.php index 5c734140b1..709d51b7e9 100644 --- a/phpBB/language/en/acp/email.php +++ b/phpBB/language/en/acp/email.php @@ -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 // Bot settings -$lang += array( +$lang = array_merge($lang, array( 'ACP_MASS_EMAIL_EXPLAIN' => 'Here you can email a message to either all of your users, or all users of a specific group. To do this, an email will be sent out to the administrative email address supplied, with a blind carbon copy sent to all recipients. If you are emailing a large group of people please be patient after submitting and do not stop the page halfway through. It is normal for a mass emailing to take a long time, you will be notified when the script has completed', 'ALL_USERS' => 'All Users', @@ -54,6 +54,6 @@ $lang += array( 'NO_EMAIL_MESSAGE' => 'You must enter a message.', 'NO_EMAIL_SUBJECT' => 'You must specify a subject for your message.', -); +)); ?>
\ No newline at end of file |
