Fix issue where users weren't redirected to the intended page after login

This commit is contained in:
Dave Earley 2016-07-15 13:02:35 +01:00
parent 4a11ba3ad8
commit 821f936dac
1 changed files with 1 additions and 1 deletions

View File

@ -66,6 +66,6 @@ class UserLoginController extends Controller
->withInput();
}
return Redirect::to(route('showSelectOrganiser'));
return redirect()->intended(route('showSelectOrganiser'));
}
}