Merge branch 'develop' of github.com:octobercms/october into develop

This commit is contained in:
alekseybobkov 2014-08-06 22:44:48 +11:00
commit 7079cba205
1 changed files with 3 additions and 3 deletions

View File

@ -74,12 +74,12 @@ class Auth extends Controller
'password' => post('password')
], true);
// Log the sign in event
AccessLog::add($user);
// Load version updates
VersionManager::instance()->updateAll();
// Log the sign in event
AccessLog::add($user);
// Redirect to the intended page after successful sign in
return Redirect::intended(Backend::url('backend'));
}