diff options
Diffstat (limited to 'engine/lib/languages.php')
-rw-r--r-- | engine/lib/languages.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/engine/lib/languages.php b/engine/lib/languages.php index 5f91aceec..575f3679b 100644 --- a/engine/lib/languages.php +++ b/engine/lib/languages.php @@ -38,7 +38,10 @@ if (!isset($CONFIG->translations[$country_code])) {
$CONFIG->translations[$country_code] = $language_array;
} else {
- $CONFIG->translations[$country_code] = array_merge($CONFIG->translations[$country_code],$language_array);
+ //$CONFIG->translations[$country_code] = array_merge($CONFIG->translations[$country_code],$language_array); + $CONFIG->translations[$country_code] += $language_array; + //foreach ($language_array as $key => $value) + // $CONFIG->translations[$country_code][$key] = $value;
}
return true;
|