diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-18 14:55:17 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-03-18 14:55:17 +0000 |
commit | 1432a31b531da41c29bc8edbb1b076525aa4e597 (patch) | |
tree | 0431697cef80b0dccc47d085918e5560e43fc76b /engine/lib/languages.php | |
parent | c656493b42b5e6883183b05d696b65d246365d00 (diff) | |
download | elgg-1432a31b531da41c29bc8edbb1b076525aa4e597.tar.gz elgg-1432a31b531da41c29bc8edbb1b076525aa4e597.tar.bz2 |
Different assignment.
git-svn-id: https://code.elgg.org/elgg/trunk@3168 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/languages.php')
-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;
|