diff options
author | Frank Michel <office@frankmichel.com> | 2011-08-25 16:59:55 +0200 |
---|---|---|
committer | Frank Michel <office@frankmichel.com> | 2011-08-25 16:59:55 +0200 |
commit | cb272b60e55882246677db929bc2e0a58f31397d (patch) | |
tree | 3434290cac1f5c867f0ba9aa28348759901c4aa5 | |
parent | 373043fef2723d7cbdd768d1930363ac6fecba68 (diff) |
fixed logical operator OR in core/lang
-rwxr-xr-x | 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 e140a6a60..d61d1029a 100755 --- a/system/core/Lang.php +++ b/system/core/Lang.php @@ -112,7 +112,7 @@ class CI_Lang { } - if ( ! isset($lang) || ! is_array($lang)) + if ( ! isset($lang) OR ! is_array($lang)) { log_message('error', 'Language file contains no data: language/'.$idiom.'/'.$langfile); return; |