fix parsing of app parameter and fix external app
This commit is contained in:
parent
657d02371c
commit
06e9ac8591
10
lib/base.php
10
lib/base.php
|
@ -425,8 +425,17 @@ class OC{
|
||||||
|
|
||||||
//parse the given parameters
|
//parse the given parameters
|
||||||
self::$REQUESTEDAPP = (isset($_GET['app'])?strip_tags($_GET['app']):'files');
|
self::$REQUESTEDAPP = (isset($_GET['app'])?strip_tags($_GET['app']):'files');
|
||||||
|
if(substr_count(self::$REQUESTEDAPP, '?') != 0){
|
||||||
|
$app = substr(self::$REQUESTEDAPP, 0, strpos(self::$REQUESTEDAPP, '?'));
|
||||||
|
$param = substr(self::$REQUESTEDAPP, strpos(self::$REQUESTEDAPP, '?') + 1);
|
||||||
|
parse_str($param, $get);
|
||||||
|
$_GET = array_merge($_GET, $get);
|
||||||
|
self::$REQUESTEDAPP = $app;
|
||||||
|
$_GET['app'] = $app;
|
||||||
|
}
|
||||||
self::$REQUESTEDFILE = (isset($_GET['getfile'])?$_GET['getfile']:null);
|
self::$REQUESTEDFILE = (isset($_GET['getfile'])?$_GET['getfile']:null);
|
||||||
if(substr_count(self::$REQUESTEDFILE, '?') != 0){
|
if(substr_count(self::$REQUESTEDFILE, '?') != 0){
|
||||||
|
echo "WIN";
|
||||||
$file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?'));
|
$file = substr(self::$REQUESTEDFILE, 0, strpos(self::$REQUESTEDFILE, '?'));
|
||||||
$param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1);
|
$param = substr(self::$REQUESTEDFILE, strpos(self::$REQUESTEDFILE, '?') + 1);
|
||||||
parse_str($param, $get);
|
parse_str($param, $get);
|
||||||
|
@ -443,7 +452,6 @@ class OC{
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//update path to lib base
|
//update path to lib base
|
||||||
@file_put_contents(OC::$APPSROOT . '/apps/inc.php', '<?php require_once(\'' . OC::$SERVERROOT . '/lib/base.php' . '\'); ?>');
|
@file_put_contents(OC::$APPSROOT . '/apps/inc.php', '<?php require_once(\'' . OC::$SERVERROOT . '/lib/base.php' . '\'); ?>');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue