From 054e25eac28e7277d101946893d392341775e120 Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 14 May 2012 21:03:22 +1200 Subject: [PATCH] You need the library to do the external update. --- inc/caldav-GET.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/caldav-GET.php b/inc/caldav-GET.php index d9085d48..2f4b18e8 100644 --- a/inc/caldav-GET.php +++ b/inc/caldav-GET.php @@ -15,7 +15,8 @@ require("caldav-GET-functions.php"); $dav_resource = new DAVResource($request->path); $dav_resource->NeedPrivilege( array('urn:ietf:params:xml:ns:caldav:read-free-busy','DAV::read') ); if ( $dav_resource->IsExternal() ) { - update_external ( $dav_resource ); + require_once("external-fetch.php"); + update_external ( $dav_resource ); } if ( ! $dav_resource->Exists() ) {