diff options
author | Brice Maron <brice@bmaron.net> | 2012-06-07 20:36:55 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-06-07 20:36:55 +0000 |
commit | 9ec68c819bf409905e3e3ab17cb4b2dd925cbde7 (patch) | |
tree | fd115646b7a23b5d615949aea9cc8b84e8d9b83d /lib/app.php | |
parent | 9f1c46b6f6faebaebf555e0d26bcdef9e49daccc (diff) | |
download | nextcloud-server-9ec68c819bf409905e3e3ab17cb4b2dd925cbde7.tar.gz nextcloud-server-9ec68c819bf409905e3e3ab17cb4b2dd925cbde7.zip |
Change parameter 'web' to 'url' and take array of array in config instead of : separated values
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 43d60f3a684..79a0a2e0534 100755 --- a/lib/app.php +++ b/lib/app.php @@ -342,7 +342,7 @@ class OC_App{ public static function getAppWebPath($appid) { foreach(OC::$APPSROOTS as $dir) { if(file_exists($dir['path'].'/'.$appid)) { - return $dir['web'].'/'.$appid; + return $dir['url'].'/'.$appid; } } return false; |