Merge pull request #1739 from Bering/regex-validation-message

Fixes the validation error message for regex validation rule
This commit is contained in:
Taylor Otwell 2013-02-25 13:58:26 -08:00
commit 3d5747c282
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,6 @@
"in" => "The selected :attribute is invalid.",
"integer" => "The :attribute must be an integer.",
"ip" => "The :attribute must be a valid IP address.",
"match" => "The :attribute format is invalid.",
"max" => array(
"numeric" => "The :attribute must be less than :max.",
"file" => "The :attribute must be less than :max kilobytes.",
@ -51,6 +50,7 @@
),
"notin" => "The selected :attribute is invalid.",
"numeric" => "The :attribute must be a number.",
"regex" => "The :attribute format is invalid.",
"required" => "The :attribute field is required.",
"required_with" => "The :attribute field is required when :values is present.",
"same" => "The :attribute and :other must match.",