diff options
author | Derek Jones <derek.jones@ellislab.com> | 2010-04-26 16:10:21 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2010-04-26 16:10:21 +0200 |
commit | 247f02925e04a8a45f2e6e9acbf72ccd6848fd32 (patch) | |
tree | e255ca9e7458bb17cfe28be3723ec40813b3ebce /system/libraries | |
parent | 30841679f57da9de8053c8291a665043f8f92c03 (diff) |
fixed errant syntax in changeset 53ace78c4b45, fixes #37
Diffstat (limited to 'system/libraries')
-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 b3c625eb1..7a5eef0f3 100644 --- a/system/libraries/Upload.php +++ b/system/libraries/Upload.php @@ -857,7 +857,7 @@ class CI_Upload { if ( ! isset($CI->security)) { - $CI->load('security'); + $CI->load->library('security'); } return $CI->security->xss_clean($data, TRUE); |