aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-05-16 23:13:50 +0200
committerJoas Schilling <nickvergessen@gmx.de>2015-05-16 23:13:50 +0200
commit80be642a0b77d400dadce7a8a30c50d32c27bf1f (patch)
treea4e1b0ca73e7bc17bb3471670fca9e39418ed921 /phpBB/develop
parentf6c246f8899edb480c7347cb43e2cbdc96c80d17 (diff)
downloadforums-80be642a0b77d400dadce7a8a30c50d32c27bf1f.tar
forums-80be642a0b77d400dadce7a8a30c50d32c27bf1f.tar.gz
forums-80be642a0b77d400dadce7a8a30c50d32c27bf1f.tar.bz2
forums-80be642a0b77d400dadce7a8a30c50d32c27bf1f.tar.xz
forums-80be642a0b77d400dadce7a8a30c50d32c27bf1f.zip
[ticket/13844] Fix language file so the tests pass
PHPBB3-13844
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/lang_migrate_help_lang.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/develop/lang_migrate_help_lang.php b/phpBB/develop/lang_migrate_help_lang.php
index d523493c83..d5a2573ee0 100644
--- a/phpBB/develop/lang_migrate_help_lang.php
+++ b/phpBB/develop/lang_migrate_help_lang.php
@@ -252,7 +252,7 @@ function write_help($help, array $lang)
global $phpbb_root_path;
$fp = fopen($phpbb_root_path . 'language/en/help/' . $help . '.php', 'wb');
fwrite($fp, get_language_file_header());
- fwrite($fp, '$lang = array(' . "\n");
+ fwrite($fp, '$lang = array_merge($lang, array(' . "\n");
$last_key = '';
ksort($lang);
@@ -270,7 +270,7 @@ function write_help($help, array $lang)
$last_key = $key_start;
}
- fwrite($fp, ');' . "\n");
+ fwrite($fp, '));' . "\n");
#fwrite($fp, $lang);
fclose($fp);
}