diff options
author | Evan Prodromou <evan@status.net> | 2009-09-16 11:57:26 -0400 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2009-09-16 11:57:26 -0400 |
commit | aef434f9b2a8865facc34270cc0f19e8b7967f79 (patch) | |
tree | 715e89e1b48520de5772c67ea5a9e01b242ee8b0 /lib | |
parent | 5ab1ec7ad578e1ac1f2d18ad8e2299cda21f572a (diff) | |
parent | 6568a3202d3acfde694b359e2524d52d93dc83dd (diff) |
Merge branch '0.8.x' of git@gitorious.org:statusnet/mainline into 0.8.x
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/action.php b/lib/action.php index 06cdbdfe0..ebef4f9e4 100644 --- a/lib/action.php +++ b/lib/action.php @@ -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); } |