diff options
author | admin <devnull@localhost> | 2006-09-28 19:13:38 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-09-28 19:13:38 +0200 |
commit | ee54c112bfb488f833fa032758b817e1bb2c1d7d (patch) | |
tree | 0f88961293c374d2f6da29856466b75ce319e119 /system/libraries/Upload.php | |
parent | e721cc7c81af84dcabce2992fa693ce36b605a19 (diff) |
Diffstat (limited to 'system/libraries/Upload.php')
-rw-r--r-- | system/libraries/Upload.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php index 091c6c30d..37fccdfd8 100644 --- a/system/libraries/Upload.php +++ b/system/libraries/Upload.php @@ -454,7 +454,7 @@ class CI_Upload { ); - return (in_array($this->file_type, $img_mimes)) ? TRUE : FALSE; + return (in_array($this->file_type, $img_mimes, TRUE)) ? TRUE : FALSE; } // -------------------------------------------------------------------- @@ -479,7 +479,7 @@ class CI_Upload { if (is_array($mime)) { - if (in_array($this->file_type, $mime)) + if (in_array($this->file_type, $mime, TRUE)) { return TRUE; } |