diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-27 21:38:58 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-27 21:38:58 +0100 |
commit | 56f3917f362432e1674ba8b319fe8f4726f84dc2 (patch) | |
tree | b7160f670eed6283a50da254b2d833ac7ace0d8d /lib/base.php | |
parent | 7eec31567fd699f3fac10c5d5bb5311874b235f1 (diff) | |
download | nextcloud-server-56f3917f362432e1674ba8b319fe8f4726f84dc2.tar.gz nextcloud-server-56f3917f362432e1674ba8b319fe8f4726f84dc2.zip |
Use the plain urlencoded path info for the routing matching
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index f9bb1bb11bf..6c012208c71 100644 --- a/lib/base.php +++ b/lib/base.php @@ -596,7 +596,7 @@ class OC { if (!self::$CLI) { try { OC_App::loadApps(); - OC::getRouter()->match(OC_Request::getPathInfo()); + OC::getRouter()->match(OC_Request::getRawPathInfo()); return; } catch (Symfony\Component\Routing\Exception\ResourceNotFoundException $e) { //header('HTTP/1.0 404 Not Found'); |