diff options
author | Andrey Andreev <narf@devilix.net> | 2014-11-08 14:15:44 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-11-08 14:15:44 +0100 |
commit | 5a7f77d86ba492fc6561ec9af57fb1135693b357 (patch) | |
tree | 0e426d94fe270b44c30daa1069790c8b0ee29296 | |
parent | 50c9ea154c125f5ce1a2d0384470f4e71188d628 (diff) |
Fix #3318
-rw-r--r-- | system/core/Lang.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Lang.php b/system/core/Lang.php index cac73c2e1..bdd6da8e9 100644 --- a/system/core/Lang.php +++ b/system/core/Lang.php @@ -91,7 +91,7 @@ class CI_Lang { { foreach ($langfile as $value) { - return $this->load($value, $idiom, $return, $add_suffix, $alt_path); + $this->load($value, $idiom, $return, $add_suffix, $alt_path); } } |