summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/base.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php
index 0802e040c0f..f8f9362a64a 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -406,7 +406,6 @@ class OC{
if(substr_count(self::$REQUESTEDFILE, '?') != 0){
$file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?'));
$param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1);
- echo $param;
parse_str($param, $get);
$_GET = array_merge($_GET, $get);
self::$REQUESTEDFILE = $file;