diff options
author | st3so <st3so@server.fake> | 2014-01-12 15:45:33 +0100 |
---|---|---|
committer | st3so <st3so@server.fake> | 2014-01-12 15:49:32 +0100 |
commit | a2cae551f30a0166439af9d467134d4bd802e940 (patch) | |
tree | de20ce3439da6e4b128f612025cf321e833009ad /lib | |
parent | b24c21b00f0116e8749f37646cc25f798992bf05 (diff) | |
download | nextcloud-server-a2cae551f30a0166439af9d467134d4bd802e940.tar.gz nextcloud-server-a2cae551f30a0166439af9d467134d4bd802e940.zip |
fixing typo in redirection query string
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/private/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index c0e618cc863..a4b3761dbd3 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -580,7 +580,7 @@ class OC_Util { // Check if we are a user if( !OC_User::isLoggedIn()) { header( 'Location: '.OC_Helper::linkToAbsolute( '', 'index.php', - array('redirectUrl' => OC_Request::requestUri()) + array('redirect_url' => OC_Request::requestUri()) )); exit(); } |