Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
tkaratug committed May 22, 2017
2 parents 08f4b48 + 7cbe25a commit 79d447c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion System/Libs/Validation/Validation.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function isValid()
$this->errors[] = lang('validation', $filter . '_error', ['%s' => $this->labels[$key], '%t' => $this->labels[$params]]);
} else {
if ($this->$filter($this->data[$key], $params) === false)
$this->errors[] = lang('validation', $filter . '_error', ['%s' => $this->labels[$key], '%t' => $this->labels[$params]]);
$this->errors[] = lang('validation', $filter . '_error', ['%s' => $this->labels[$key], '%t' => $params]);
}
} else {
if ($this->$rule($this->data[$key]) === false)
Expand Down

0 comments on commit 79d447c

Please sign in to comment.