From 151489f07194262ba720a33a749a74b2d4ba61ee Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sat, 1 Nov 2008 10:58:42 +1300 Subject: [PATCH] Fix typo in example. --- inc/caldav-client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/caldav-client.php b/inc/caldav-client.php index ddfb6c3d..88fcdaf7 100644 --- a/inc/caldav-client.php +++ b/inc/caldav-client.php @@ -470,7 +470,7 @@ EOFILTER; $cal = new CalDAVClient( "http://calendar.example.com/caldav.php/username/calendar/", "username", "password", "calendar" ); $options = $cal->DoOptionsRequest(); -if ( isset($options["PROPFIND"] ) { +if ( isset($options["PROPFIND"]) ) { // Fetch some information about the events in that calendar $cal->SetDepth(1); $folder_xml = $cal->DoXMLRequest("PROPFIND", '' );