diff options
author | Brice Maron <brice@bmaron.net> | 2012-06-06 21:11:15 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-06-06 21:11:15 +0000 |
commit | e8447e0bda25744c4836a8fdf009a98174264eda (patch) | |
tree | 5eb765f5cc62df8ba8ab3c68afb4eec220d1d435 /remote.php | |
parent | 5c2b2fc8425e7fa52945b53058ac67f67d228409 (diff) | |
download | nextcloud-server-e8447e0bda25744c4836a8fdf009a98174264eda.tar.gz nextcloud-server-e8447e0bda25744c4836a8fdf009a98174264eda.zip |
Rework to fit with minizer
Diffstat (limited to 'remote.php')
-rw-r--r-- | remote.php | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/remote.php b/remote.php index 55b088d775e..e1e11c5773f 100644 --- a/remote.php +++ b/remote.php @@ -17,9 +17,17 @@ if(is_null($file)){ exit; } -$parts=explode('/', $file, 2); -$app=$parts[0]; -OC_App::loadApp($app); +if(count(explode('/',$file)) == 3) { + $parts=explode('/',$file); + $app=$parts[2]; + OC_App::loadApp($app); + $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; + require_once( OC::$SERVERROOT.$file); -$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; -require_once(OC_App::getAppPath($app) .'/'. $parts[1]);
\ No newline at end of file +} else { + $parts=explode('/', $file, 2); + $app=$parts[0]; + OC_App::loadApp($app); + $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; + require_once(OC_App::getAppPath($app) .'/'. $parts[1]); +} |