304 responses should not have a Content-Length header.

这个提交包含在:
Craig Andrews 2009-09-15 17:17:36 -04:00
父节点 c6675bbddf
当前提交 d7e13e847d

查看文件

@ -900,7 +900,6 @@ class Action extends HTMLOutputter // lawsuit
!$etag ||
$this->_hasEtag($etag, $if_none_match)) {
header('HTTP/1.1 304 Not Modified');
header('Content-Length: 0');
// Better way to do this?
exit(0);
}
@ -919,7 +918,6 @@ class Action extends HTMLOutputter // lawsuit
header('ETag: ' . $etag);
if($if_none_match && $this->_hasEtag($etag, $if_none_match)) {
header('HTTP/1.1 304 Not Modified');
header('Content-Length: 0');
// Better way to do this?
exit(0);
}