added web\Controller::goBack() as shortcut

goBack() will redirect user to his returnUrl
fixes #925
This commit is contained in:
Carsten Brandt
2013-10-01 20:01:14 +02:00
parent d03d681583
commit 2c30ddfcb0
2 changed files with 14 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ class SiteController extends Controller
{
$model = new LoginForm();
if ($model->load($_POST) && $model->login()) {
return $this->goHome();
return $this->goBack();
} else {
return $this->render('login', array(
'model' => $model,