From 25e8519b4b6b0200d8b4efb76c2a8ef878c49b0b Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Tue, 24 Aug 2010 14:44:41 +1200 Subject: [PATCH] OPTIONS should be available to someone with any of the read permissions. --- inc/caldav-OPTIONS.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/caldav-OPTIONS.php b/inc/caldav-OPTIONS.php index 9589de64..10f8da45 100644 --- a/inc/caldav-OPTIONS.php +++ b/inc/caldav-OPTIONS.php @@ -13,7 +13,7 @@ dbg_error_log("OPTIONS", "method handler"); include_once('DAVResource.php'); $resource = new DAVResource($request->path); -$resource->NeedPrivilege( 'DAV::read' ); +$resource->NeedPrivilege( 'DAV::read', true ); if ( !$resource->Exists() ) { $request->DoResponse( 404, translate("No collection found at that location.") );