Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Request::hasSessionStore() has been removed #154

Merged
merged 1 commit into from
Feb 10, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/LaravelBook/Ardent/Ardent.php
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ public function validate(array $rules = array(), array $customMessages = array()
$this->validationErrors = $validator->messages();

// stash the input to the current session
if (!self::$externalValidator && Input::hasSessionStore()) {
if (!self::$externalValidator && Input::hasSession()) {
Input::flash();
}
}
Expand Down