mirror of
https://github.com/nextcloud/server.git
synced 2026-04-24 23:59:27 -04:00
ETags must be quoted.
This commit is contained in:
parent
86893ea78c
commit
496c1581d7
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ class OC_Response {
|
|||
self::setStatus(self::STATUS_NOT_MODIFIED);
|
||||
exit;
|
||||
}
|
||||
header('ETag: '.$etag);
|
||||
header('ETag: "'.$etag.'"');
|
||||
}
|
||||
|
||||
static public function setLastModifiedHeader($lastModified) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue