diff options
author | acsfer <carlos@reendex.com> | 2021-06-09 16:20:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 16:20:55 +0200 |
commit | ae772895118e26fe27f20f3aed2bd8985d64ccc6 (patch) | |
tree | 05d685396fa5f57499a6c7f98e43fa68b7cdfba7 /apps | |
parent | 70483a16a3a232758979bb6fa363629b5a16b6a4 (diff) | |
download | nextcloud-server-ae772895118e26fe27f20f3aed2bd8985d64ccc6.tar.gz nextcloud-server-ae772895118e26fe27f20f3aed2bd8985d64ccc6.zip |
Header must contain a colon
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/Connector/PublicAuth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/PublicAuth.php b/apps/dav/lib/Connector/PublicAuth.php index 74d65c1669f..55d2de72228 100644 --- a/apps/dav/lib/Connector/PublicAuth.php +++ b/apps/dav/lib/Connector/PublicAuth.php @@ -109,7 +109,7 @@ class PublicAuth extends AbstractBasic { if (in_array('XMLHttpRequest', explode(',', $this->request->getHeader('X-Requested-With')))) { // do not re-authenticate over ajax, use dummy auth name to prevent browser popup http_response_code(401); - header('WWW-Authenticate','DummyBasic realm="' . $this->realm . '"'); + header('WWW-Authenticate: DummyBasic realm="' . $this->realm . '"'); throw new \Sabre\DAV\Exception\NotAuthenticated('Cannot authenticate over ajax calls'); } return false; |