Browse Source

Add on to accepted.

Taylor Otwell 12 years ago
parent
commit
19b01b1d27
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/validator.php

+ 1 - 1
laravel/validator.php

@@ -301,7 +301,7 @@ class Validator {
 	 */
 	protected function validate_accepted($attribute, $value)
 	{
-		return $this->validate_required($attribute, $value) and ($value == 'yes' or $value == '1');
+		return $this->validate_required($attribute, $value) and ($value == 'yes' or $value == '1' or $value == 'on');
 	}
 
 	/**