diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-04-26 16:09:21 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-04-26 16:09:21 +0200 |
commit | 30841679f57da9de8053c8291a665043f8f92c03 (patch) | |
tree | c3bbd7b9a08a43eca1d3c715f5714b33ab7c6e61 /system/libraries/Upload.php | |
parent | 78a1cf24831e067aae04531718a167e8ec144fda (diff) |
fixed errant syntax in changeset 53ace78c4b45, fixes #37
Diffstat (limited to 'system/libraries/Upload.php')
-rw-r--r-- | system/libraries/Upload.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php index d7cf236f8..b3c625eb1 100644 --- a/system/libraries/Upload.php +++ b/system/libraries/Upload.php @@ -855,7 +855,7 @@ class CI_Upload { $CI =& get_instance(); - if ( ! is_object($CI->security)) + if ( ! isset($CI->security)) { $CI->load('security'); } |