summaryrefslogtreecommitdiffstats
path: root/system/core/Lang.php
diff options
context:
space:
mode:
authorFrank Michel <office@frankmichel.com>2011-08-25 16:59:55 +0200
committerFrank Michel <office@frankmichel.com>2011-08-25 16:59:55 +0200
commitcb272b60e55882246677db929bc2e0a58f31397d (patch)
tree3434290cac1f5c867f0ba9aa28348759901c4aa5 /system/core/Lang.php
parent373043fef2723d7cbdd768d1930363ac6fecba68 (diff)
fixed logical operator OR in core/lang
Diffstat (limited to 'system/core/Lang.php')
-rwxr-xr-xsystem/core/Lang.php2
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;