summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-21 09:44:27 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-21 09:44:27 +0100
commitef4dc22a6a8ebc9d9859467ef8a812143f42c9f3 (patch)
tree9a95b06d659bcbd489d087a0f5447a5981e54573 /lib
parentb9da594bd984b9174bac411e3d145e5a088e0c1c (diff)
parent24abe1e1e1a9945d800ed446a3b5a3907df6a7dd (diff)
downloadnextcloud-server-ef4dc22a6a8ebc9d9859467ef8a812143f42c9f3.tar.gz
nextcloud-server-ef4dc22a6a8ebc9d9859467ef8a812143f42c9f3.zip
Merge pull request #23369 from owncloud/use-raw-path
Use raw PATH_INFO
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 7659148c140..16db8f4dcd2 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -823,7 +823,7 @@ class OC {
}
$request = \OC::$server->getRequest();
- $requestPath = $request->getPathInfo();
+ $requestPath = $request->getRawPathInfo();
if (substr($requestPath, -3) !== '.js') { // we need these files during the upgrade
self::checkMaintenanceMode();
self::checkUpgrade();