diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-02 15:09:59 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-02 15:09:59 +0100 |
commit | 2bd1c17345e107e8a880f4e3255696802df7a29c (patch) | |
tree | 8521cead9d9e760d8ee95409ab7556e7aa344e43 /lib | |
parent | 92bc1b44d5230b6256be8f1f79d364c9bb277944 (diff) | |
download | nextcloud-server-2bd1c17345e107e8a880f4e3255696802df7a29c.tar.gz nextcloud-server-2bd1c17345e107e8a880f4e3255696802df7a29c.zip |
Don't encode url unecessary twice
The URL was previously encoded twice which leads to getting redirected to a 404 page when the password has been entered incorrect at least once.
Testplan:
- [ ] Opening `http://localhost/core/index.php?redirect_url=%2Fcore%2Findex.php%2Fsettings%2Fadmin` redirects to the admin page when providing the correct credentials
- [ ] Opening `http://localhost/core/index.php?redirect_url=%2Fcore%2Findex.php%2Fsettings%2Fadmin` redirects to the admin page when providing the invalid credentials and then providing valid ones.
- [ ] Logging in as admin then going to the admin page and clearing the cookies and refreshing will show the login and when repeating the above test steps you're redirected correctly.
Fixes https://github.com/owncloud/core/issues/9804
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/util.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index c08cff81469..9a01ca3ac95 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -818,8 +818,7 @@ class OC_Util { $parameters['user_autofocus'] = true; } if (isset($_REQUEST['redirect_url'])) { - $redirectUrl = $_REQUEST['redirect_url']; - $parameters['redirect_url'] = urlencode($redirectUrl); + $parameters['redirect_url'] = $_REQUEST['redirect_url']; } $parameters['alt_login'] = OC_App::getAlternativeLogIns(); |