Explorar o código

added web\Controller::goBack() as shortcut

goBack() will redirect user to his returnUrl
fixes #925
Carsten Brandt %!s(int64=12) %!d(string=hai) anos
pai
achega
44b1fce99b
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      controllers/SiteController.php

+ 1 - 1
controllers/SiteController.php

@@ -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,