Fix bug causing non-required fields to throw errors in Validator class.

This commit is contained in:
Taylor Otwell 2011-07-21 11:03:44 -07:00
parent 89b5ad030e
commit d0b160c329
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ protected function check($attribute, $rule)
// No validation will be run for attributes that do not exist unless the rule being validated
// 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 ( ! static::validate_required($attribute) and ! in_array($rule, array('required', 'accepted')))
{
return;
}