]> source.dussan.org Git - nextcloud-server.git/commitdiff
ETags must be quoted.
authorThomas Tanghus <thomas@tanghus.net>
Thu, 16 Feb 2012 22:24:23 +0000 (23:24 +0100)
committerThomas Tanghus <thomas@tanghus.net>
Sat, 18 Feb 2012 10:49:31 +0000 (11:49 +0100)
lib/response.php

index 9edae3603b279d5b25371b2f783d43de4f8bcc82..a75135c01761e5744a314292b7720e5b6446a3c2 100644 (file)
@@ -116,7 +116,7 @@ class OC_Response {
                        self::setStatus(self::STATUS_NOT_MODIFIED);
                        exit;
                }
-               header('ETag: '.$etag);
+               header('ETag: "'.$etag.'"');
        }
 
        /**