diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2012-02-26 18:26:41 +0100 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2012-02-26 18:26:41 +0100 |
commit | ab96fa67c886d8ba2a4e930930f8e7a7b95e9cfa (patch) | |
tree | fac73ffb45fb63ec648b5d372f01b69931add004 /apps/calendar/caldav.php | |
parent | 8148480cfe2ca263f493d042866a809a45ee05af (diff) | |
download | nextcloud-server-ab96fa67c886d8ba2a4e930930f8e7a7b95e9cfa.tar.gz nextcloud-server-ab96fa67c886d8ba2a4e930930f8e7a7b95e9cfa.zip |
first part of the abstraction work of the apps folder. more to come
Diffstat (limited to 'apps/calendar/caldav.php')
-rw-r--r-- | apps/calendar/caldav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/calendar/caldav.php b/apps/calendar/caldav.php index db0b35da118..e0925c54ee7 100644 --- a/apps/calendar/caldav.php +++ b/apps/calendar/caldav.php @@ -25,7 +25,7 @@ $nodes = array( // Fire up server $server = new Sabre_DAV_Server($nodes); -$server->setBaseUri(OC::$WEBROOT.'/apps/calendar/caldav.php'); +$server->setBaseUri(OC::$APPSROOT.'/apps/calendar/caldav.php'); // Add plugins $server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud')); $server->addPlugin(new Sabre_CalDAV_Plugin()); |