diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-06-22 09:56:54 +0200 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-06-22 09:56:54 +0200 |
commit | ba2d203a543bdbf1c029b48485a59cb5e898d630 (patch) | |
tree | 75560e71f2329a4999d4fdf71c1f164109ac49da /lib/app.php | |
parent | b5953e7a83d2dc8f1483c7809414dca7a1cde990 (diff) | |
download | nextcloud-server-ba2d203a543bdbf1c029b48485a59cb5e898d630.tar.gz nextcloud-server-ba2d203a543bdbf1c029b48485a59cb5e898d630.zip |
some path fixes for multi-dir app
Diffstat (limited to 'lib/app.php')
-rwxr-xr-x | lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php index 071ac83b4f2..486704a2229 100755 --- a/lib/app.php +++ b/lib/app.php @@ -370,7 +370,7 @@ class OC_App{ */ public static function getAppWebPath($appid) { if( ($dir = self::findAppInDirectories($appid)) != false) { - return $dir['url'].'/'.$appid; + return OC::$WEBROOT.$dir['url'].'/'.$appid; } } |