aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/DAV/PublicAuth.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/lib/DAV/PublicAuth.php')
-rw-r--r--apps/dav/lib/DAV/PublicAuth.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/DAV/PublicAuth.php b/apps/dav/lib/DAV/PublicAuth.php
index 2142bd04753..c2b4ada173a 100644
--- a/apps/dav/lib/DAV/PublicAuth.php
+++ b/apps/dav/lib/DAV/PublicAuth.php
@@ -53,9 +53,9 @@ class PublicAuth implements BackendInterface {
*/
public function check(RequestInterface $request, ResponseInterface $response) {
if ($this->isRequestPublic($request)) {
- return [true, "principals/system/public"];
+ return [true, 'principals/system/public'];
}
- return [false, "No public access to this resource."];
+ return [false, 'No public access to this resource.'];
}
/**