From: Tobias Hößl Date: Mon, 30 Jul 2012 19:18:10 +0000 (+0000) Subject: Prevent a notice X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a9924ea4430c1990d5b6795610d12f8c4f4f015b;p=friendica-addons.git Prevent a notice --- diff --git a/dav/common/calendar.fnk.php b/dav/common/calendar.fnk.php index ea04bdae..10d88833 100644 --- a/dav/common/calendar.fnk.php +++ b/dav/common/calendar.fnk.php @@ -235,7 +235,7 @@ function dav_create_server($force_authentication = false, $needs_caldav = true, // The object tree needs in turn to be passed to the server class $server = new Sabre_DAV_Server($tree); - $server->setBaseUri(CALDAV_URL_PREFIX); + if (CALDAV_URL_PREFIX != "") $server->setBaseUri(CALDAV_URL_PREFIX); $authPlugin = new Sabre_DAV_Auth_Plugin(Sabre_DAV_Auth_Backend_Std::getInstance(), 'SabreDAV'); $server->addPlugin($authPlugin);