mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
ETags must be quoted.
This commit is contained in:
parent
6f1ed85f0b
commit
71aa36c3f1
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ class OC_Response {
|
|||
self::setStatus(self::STATUS_NOT_MODIFIED);
|
||||
exit;
|
||||
}
|
||||
header('ETag: '.$etag);
|
||||
header('ETag: "'.$etag.'"');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue