summaryrefslogtreecommitdiffstats
path: root/lib/app.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-07-13 22:44:35 +0200
committerRobin Appelman <icewind@owncloud.com>2012-07-13 22:44:35 +0200
commitb45d3ced79b5a20034c85973760e2f120e1574e7 (patch)
treec69db0b98cf26bb6a4d014f6a9450a75c2cc9568 /lib/app.php
parent6ee228cac7e5aca1181113ca499bda6c04497da7 (diff)
downloadnextcloud-server-b45d3ced79b5a20034c85973760e2f120e1574e7.tar.gz
nextcloud-server-b45d3ced79b5a20034c85973760e2f120e1574e7.zip
fix remote and public.php
Diffstat (limited to 'lib/app.php')
-rwxr-xr-xlib/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/app.php b/lib/app.php
index 4c2c43ec26b..caf8bd82521 100755
--- a/lib/app.php
+++ b/lib/app.php
@@ -608,7 +608,7 @@ class OC_App{
//set remote/public handelers
$appData=self::getAppInfo($appid);
foreach($appData['remote'] as $name=>$path){
- OCP\CONFIG::setAppValue('core', 'remote_'.$name, $path);
+ OCP\CONFIG::setAppValue('core', 'remote_'.$name, $appid.'/'.$path);
}
foreach($appData['public'] as $name=>$path){
OCP\CONFIG::setAppValue('core', 'public_'.$name, $appid.'/'.$path);