Sfoglia il codice sorgente

added web\Controller::goBack() as shortcut

goBack() will redirect user to his returnUrl
fixes #925
Carsten Brandt 12 anni fa
parent
commit
44b1fce99b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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,