Browse Source

changed continue to return in validation library.

Taylor Otwell 13 years ago
parent
commit
cffbcd010d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/validator.php

+ 1 - 1
system/validator.php

@@ -120,7 +120,7 @@ class Validator {
 		// is "required" or "accepted". No other rules have implicit "required" checks.
 		// is "required" or "accepted". No other rules have implicit "required" checks.
 		if ( ! array_key_exists($attribute, $this->attributes) and ! in_array($rule, array('required', 'accepted')))
 		if ( ! array_key_exists($attribute, $this->attributes) and ! in_array($rule, array('required', 'accepted')))
 		{
 		{
-			continue;
+			return;
 		}
 		}
 
 
 		if ( ! $this->$validator($attribute, $parameters))
 		if ( ! $this->$validator($attribute, $parameters))