From 5511a89296c54aca9ab1a95235c93694765c766d Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sun, 10 Dec 2006 22:31:23 +1300 Subject: [PATCH] RFC compliance. --- inc/caldav-MKCALENDAR.php | 1 + 1 file changed, 1 insertion(+) diff --git a/inc/caldav-MKCALENDAR.php b/inc/caldav-MKCALENDAR.php index 0d73399b..1ebbabea 100644 --- a/inc/caldav-MKCALENDAR.php +++ b/inc/caldav-MKCALENDAR.php @@ -34,6 +34,7 @@ $qry = new PgQuery( $sql, $request->user_no, $parent_container, $request->path, if ( $qry->Exec("MKCALENDAR",__LINE__,__FILE__) ) { dbg_error_log( "MKCALENDAR", "New calendar '%s' created named '%s' for user '%d' in parent '%s'", $request->path, $displayname, $session->user_no, $parent_container); + header("Cache-Control: no-cache"); /** draft-caldav-15 declares this is necessary at 5.3.1 */ $request->DoResponse( 201, "" ); } else {