소스 검색

added web\Controller::goBack() as shortcut

goBack() will redirect user to his returnUrl
fixes #925
Carsten Brandt 12 년 전
부모
커밋
44b1fce99b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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,