Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <dev@georgswebsite.de>2012-07-26 18:03:19 +0400
committerGeorg Ehrke <dev@georgswebsite.de>2012-07-26 18:03:19 +0400
commitc8de77b3fddf52eeaf0f81224e9b4aa2085bcc59 (patch)
tree9bd2686591bce36a2d21888e733d9078de30824e /remote.php
parente4679770c4d85896bef3e81125e86e272bb6cd64 (diff)
fix errors like Failed opening required ownCloudcalendar/appinfo/remote.php
Diffstat (limited to 'remote.php')
-rw-r--r--remote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.php b/remote.php
index 8461eea19ad..8dc4df1bd23 100644
--- a/remote.php
+++ b/remote.php
@@ -34,7 +34,7 @@ switch ($app) {
default:
OC_Util::checkAppEnabled($app);
OC_App::loadApp($app);
- $file = OC_App::getAppPath($app) .'/'. $parts[1];
+ $file = '/' . OC_App::getAppPath($app) .'/'. $parts[1];
break;
}
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';