summaryrefslogtreecommitdiffstats
path: root/system/libraries/Validation.php
diff options
context:
space:
mode:
authoradmin <devnull@localhost>2006-09-17 20:05:43 +0200
committeradmin <devnull@localhost>2006-09-17 20:05:43 +0200
commitdac65764e5ead0bcc9e7fcb2477926d7a2c1dc95 (patch)
treee16f0a6ee9e9f9728efdd54798d2de8b0bb48beb /system/libraries/Validation.php
parent55c11e03927b371f895d98a0b533f69cac246b07 (diff)
Diffstat (limited to 'system/libraries/Validation.php')
-rw-r--r--system/libraries/Validation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Validation.php b/system/libraries/Validation.php
index 44f49ff62..e4fd36698 100644
--- a/system/libraries/Validation.php
+++ b/system/libraries/Validation.php
@@ -187,7 +187,7 @@ class CI_Validation {
$ex = explode('|', $rules);
// Is the field required? If not, if the field is blank we'll move on to the next text
- if ( ! in_array('required', $ex))
+ if ( ! in_array('required', $ex) AND strpos($rules, 'callback_') === FALSE)
{
if ( ! isset($_POST[$field]) OR $_POST[$field] == '')
{