diff options
author | Andrey Andreev <narf@devilix.net> | 2013-07-23 16:16:10 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-07-23 16:16:10 +0200 |
commit | 519f87a07bd1fe3a9ec037f727628bb6c7c8e251 (patch) | |
tree | 1e3b41997d3629d0221b813024f673af47b60e4d /system/helpers | |
parent | 9ab70a89b3ba7ee26faaae47410259e74391b593 (diff) |
Loader changes & optimizations related to issue #2551
Diffstat (limited to 'system/helpers')
-rw-r--r-- | system/helpers/form_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/form_helper.php b/system/helpers/form_helper.php index 2002d4269..bc14df221 100644 --- a/system/helpers/form_helper.php +++ b/system/helpers/form_helper.php @@ -988,7 +988,7 @@ if ( ! function_exists('_get_validation_object')) // We set this as a variable since we're returning by reference. $return = FALSE; - if (FALSE !== ($object = $CI->load->is_loaded('form_validation'))) + if (FALSE !== ($object = $CI->load->is_loaded('Form_validation'))) { if ( ! isset($CI->$object) OR ! is_object($CI->$object)) { |