From 232788396d85a0739c74473a66c3aa215a35d75a Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 11 May 2012 16:42:28 +0200 Subject: some changes for login --- index.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'index.php') diff --git a/index.php b/index.php index 952cd89141a..acca97de796 100644 --- a/index.php +++ b/index.php @@ -61,7 +61,6 @@ elseif(OC_User::isLoggedIn()) { }else{ OC::loadfile(); } - } // For all others cases, we display the guest page : @@ -112,7 +111,7 @@ elseif(OC_User::isLoggedIn()) { $error = true; } } - if(is_null(OC::$REQUESTEDFILE)){ + if(!array_key_exists('sectoken', $_SESSION) || (array_key_exists('sectoken', $_SESSION) && is_null(OC::$REQUESTEDFILE)) || substr(OC::$REQUESTEDFILE, -3) == 'php'){ $sectoken=rand(1000000,9999999); $_SESSION['sectoken']=$sectoken; OC_Template::printGuestPage('', 'login', array('error' => $error, 'sectoken' => $sectoken, 'redirect' => isset($_REQUEST['redirect_url'])?htmlentities($_REQUEST['redirect_url']):'' )); -- cgit v1.2.3