diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-11 15:22:58 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-13 18:31:36 +0200 |
commit | f589df736613bb50419127e788ee7b391d39e2a4 (patch) | |
tree | 92f932a4a58dbad13584ba93129f059987cef2e1 /index.php | |
parent | 48ee2651705d8a3bdddf1c0254211a208e1f02e5 (diff) | |
download | nextcloud-server-f589df736613bb50419127e788ee7b391d39e2a4.tar.gz nextcloud-server-f589df736613bb50419127e788ee7b391d39e2a4.zip |
Redirect HTTP Auth requests to REQUEST_URI. Partial fix for http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-874
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/index.php b/index.php index 690fc90e752..5042ede2e27 100644 --- a/index.php +++ b/index.php @@ -109,6 +109,7 @@ elseif(OC_User::isLoggedIn()) { if (OC_User::login($_SERVER["PHP_AUTH_USER"],$_SERVER["PHP_AUTH_PW"])) { //OC_Log::write('core',"Logged in with HTTP Authentication",OC_Log::DEBUG); OC_User::unsetMagicInCookie(); + $_REQUEST['redirect_url'] = (isset($_SERVER['REQUEST_URI'])?$_SERVER['REQUEST_URI']:''); OC_Util::redirectToDefaultPage(); }else{ $error = true; |