Browse Source

fix bug in validator class required check.

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

+ 11 - 1
system/validator.php

@@ -137,7 +137,17 @@ class Validator {
 	 */
 	protected function validate_required($attribute)
 	{
-		return array_key_exists($attribute, $this->attributes) and trim($this->attributes[$attribute]) !== '';
+		if ( ! array_key_exists($attribute, $this->attributes))
+		{
+			return false;
+		}
+
+		if (is_string($this->attributes[$attribute]) and trim($this->attributes[$attribute]) === '')
+		{
+			return false;
+		}
+
+		return true;
 	}
 
 	/**