From 67b7ec52ff8961000238c15b4a4fb89d6e5c81dd Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Mon, 2 Nov 2009 23:40:29 +1300 Subject: [PATCH] Fix cut and paste typo. --- inc/DAVResource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/DAVResource.php b/inc/DAVResource.php index 5a6ac908..9ad0960f 100644 --- a/inc/DAVResource.php +++ b/inc/DAVResource.php @@ -610,7 +610,7 @@ EOQRY; */ function IsPublic() { if ( !isset($this->collection) ) $this->FetchCollection(); - return ( isset($this->collection->publicly_readable) && $this->collection->publicly_readable == 't' ) { + return ( isset($this->collection->publicly_readable) && $this->collection->publicly_readable == 't' ); }