diff options
-rw-r--r-- | engine/lib/languages.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/languages.php b/engine/lib/languages.php index 6935a49bd..3d62d08cb 100644 --- a/engine/lib/languages.php +++ b/engine/lib/languages.php @@ -38,7 +38,7 @@ if (!isset($CONFIG->translations[$country_code])) {
$CONFIG->translations[$country_code] = $language_array;
} else {
- $CONFIG->translations[$country_code] = $language_array += $CONFIG->translations[$country_code];
+ $CONFIG->translations[$country_code] = $language_array + $CONFIG->translations[$country_code];
}
return true;
|