aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--langs.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/langs.inc.php b/langs.inc.php
index a28b9775c..554d06cba 100644
--- a/langs.inc.php
+++ b/langs.inc.php
@@ -459,7 +459,7 @@ function read_translation_file($locale, $name_of_translation)
if(is_array($name_of_translation)) {
$dictionary = array();
foreach($name_of_translation as $single_filename) {
- $dictionary = array_merge($dictionary, read_translation_file($locale, $single_filename));
+ $dictionary = $dictionary + read_translation_file($locale, $single_filename);
}
return $dictionary;
} else {