From 3f8e9b7a846daba4c551174e677668265d0bbeff Mon Sep 17 00:00:00 2001 From: Luciano Baraglia Date: Mon, 12 Aug 2013 12:21:28 -0300 Subject: [PATCH] Login url fix when called from a module --- framework/yii/web/User.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/yii/web/User.php b/framework/yii/web/User.php index e202e8e..c93bdcc 100644 --- a/framework/yii/web/User.php +++ b/framework/yii/web/User.php @@ -45,12 +45,12 @@ class User extends Component * the name-value pairs are GET parameters used to construct the login URL. For example, * * ~~~ - * array('site/login', 'ref' => 1) + * array('/site/login', 'ref' => 1) * ~~~ * * If this property is null, a 403 HTTP exception will be raised when [[loginRequired()]] is called. */ - public $loginUrl = array('site/login'); + public $loginUrl = array('/site/login'); /** * @var array the configuration of the identity cookie. This property is used only when [[enableAutoLogin]] is true. * @see Cookie