From 41c4be5fbd4d4eaf69e46075ad097da811323f63 Mon Sep 17 00:00:00 2001 From: Igor Santos Date: Mon, 1 Feb 2016 23:22:25 -0200 Subject: [PATCH] fixing dead reference to old `$externalValidator` --- src/Ardent/Ardent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ardent/Ardent.php b/src/Ardent/Ardent.php index df7af70..694de9b 100755 --- a/src/Ardent/Ardent.php +++ b/src/Ardent/Ardent.php @@ -590,7 +590,7 @@ public function validate(array $rules = array(), array $customMessages = array() $this->validationErrors = $this->validator->messages(); // stash the input to the current session - if (!self::$externalValidator && Input::hasSession()) { + if (!self::$external && Input::hasSession()) { Input::flash(); } }