summaryrefslogtreecommitdiffstats
path: root/lib/app.php
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-06-04 20:37:00 +0000
committerBrice Maron <brice@bmaron.net>2012-06-06 20:24:15 +0000
commit6a812644e4d0f6eed8dca4e20c6f7135d881012a (patch)
tree546a05ff2314e3127c4b1010e9d8729c5e4e4ee8 /lib/app.php
parent6a250d0d20c92513a883a7103885712127b51cc8 (diff)
downloadnextcloud-server-6a812644e4d0f6eed8dca4e20c6f7135d881012a.tar.gz
nextcloud-server-6a812644e4d0f6eed8dca4e20c6f7135d881012a.zip
Correct remote and public, and last occurence of OC::
Diffstat (limited to 'lib/app.php')
-rwxr-xr-xlib/app.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/app.php b/lib/app.php
index 5883a29bb02..43d60f3a684 100755
--- a/lib/app.php
+++ b/lib/app.php
@@ -571,10 +571,10 @@ class OC_App{
//set remote/public handelers
$appData=self::getAppInfo($appid);
foreach($appData['remote'] as $name=>$path){
- OCP\CONFIG::setAppValue('core', 'remote_'.$name, '/apps/'.$appid.'/'.$path);
+ OCP\CONFIG::setAppValue('core', 'remote_'.$name, $path);
}
foreach($appData['public'] as $name=>$path){
- OCP\CONFIG::setAppValue('core', 'public_'.$name, '/apps/'.$appid.'/'.$path);
+ OCP\CONFIG::setAppValue('core', 'public_'.$name, $appid.'/'.$path);
}
self::setAppTypes($appid);