Added double quotes to etag to match standards

pull/524/head
n0nag0n 1 year ago
parent 593e1ee9bc
commit 8d20c002c8

@ -728,7 +728,7 @@ class Engine
{
$id = (('weak' === $type) ? 'W/' : '') . $id;
$this->response()->header('ETag', $id);
$this->response()->header('ETag', '"'.str_replace('"', '\"', $id).'"');
if (
isset($_SERVER['HTTP_IF_NONE_MATCH']) &&

Loading…
Cancel
Save