Commit 53e8f9b7 authored by Keith Loy's avatar Keith Loy

Fixing bug where custom validation messages in bundle language files were not getting picked up.

parent b7ac1b75
...@@ -692,7 +692,7 @@ class Validator { ...@@ -692,7 +692,7 @@ class Validator {
{ {
return $this->messages[$custom]; return $this->messages[$custom];
} }
elseif (Lang::has($custom = "validation.custom.{$custom}", $this->language)) elseif (Lang::has($custom = "{$bundle}validation.custom.{$custom}", $this->language))
{ {
return Lang::line($custom)->get($this->language); return Lang::line($custom)->get($this->language);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment