diff options
author | Jens Wilke <jw_list@headissue.com> | 2008-01-22 19:58:28 +0100 |
---|---|---|
committer | Jens Wilke <jw_list@headissue.com> | 2008-01-22 19:58:28 +0100 |
commit | fc39f9b4386bcff9ffe0ccdfbd747b6f74756143 (patch) | |
tree | 5462858346227fe9cafcd145e7f6c001a99b58d3 | |
parent | efa13f01cdeb3d488d3233672b39d0e19bf51888 (diff) | |
download | rpg-fc39f9b4386bcff9ffe0ccdfbd747b6f74756143.tar.gz rpg-fc39f9b4386bcff9ffe0ccdfbd747b6f74756143.tar.bz2 |
fix problems with gzip compression
darcs-hash:20080122185828-1ec87-37d8149991d56d3b924634598e57ef2d0b6562a8.gz
-rw-r--r-- | inc/pageutils.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/inc/pageutils.php b/inc/pageutils.php index 4229c60cd..6ccc49c7f 100644 --- a/inc/pageutils.php +++ b/inc/pageutils.php @@ -538,6 +538,9 @@ function http_conditionalRequest($timestamp){ // Nothing has changed since their last request - serve a 304 and exit header('HTTP/1.0 304 Not Modified'); + + // don't produce output, even if compression is on + ob_end_clean(); exit; } |