diff options
Diffstat (limited to 'inc')
-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; } |