From 70372992cb5c59cbef544ff233d0fafbac84ab4e Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Tue, 5 Dec 2006 15:15:46 +1300 Subject: [PATCH] The GET header should be plain text/calendar and not include a charset or Evolution will break. --- inc/caldav-GET.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/caldav-GET.php b/inc/caldav-GET.php index ae42ff0c..0cb92262 100644 --- a/inc/caldav-GET.php +++ b/inc/caldav-GET.php @@ -24,7 +24,7 @@ if ( $qry->Exec("GET") && $qry->rows == 1 ) { * an If-Match or If-None-Match header. I'm not sure what that means here, * so we will leave it unimplemented at this point. */ - $request->DoResponse( 200, ($request->method == "HEAD" ? "" : $event->caldav_data), "text/calendar; charset=UTF-8" ); + $request->DoResponse( 200, ($request->method == "HEAD" ? "" : $event->caldav_data), "text/calendar" ); } else if ( $qry->rows < 1 ) { $request->DoResponse( 404, "Calendar Resource Not Found." );