diff options
author | Derek Allard <derek.allard@ellislab.com> | 2009-07-06 22:53:41 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2009-07-06 22:53:41 +0200 |
commit | 4e5cf1ca1cfcb4559d8b18898a526181963890f6 (patch) | |
tree | 1856022333131beed4a421cc9d7cb8bbe93d3467 /system/libraries | |
parent | 15b93ca14fb65565561cc9c38d02dc3df1f8ba07 (diff) |
Fixed a bug in the Form Validation library where multiple callbacks weren't working (#6110)
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Form_validation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index f8077b8ee..1497d8517 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php @@ -601,7 +601,7 @@ class CI_Form_validation { // If the field isn't required and we just processed a callback we'll move on... if ( ! in_array('required', $rules, TRUE) AND $result !== FALSE) { - return; + continue; } } else |