# HG changeset patch # User Dan # Date 1201230531 18000 # Node ID 5c6e09bc7d698acefd2f352e3b5afc741b555162 # Parent 5bd4294281018774c4972feaefafdbf60dd5aa77 [minor] silenced errors to ob_gzhandler() diff -r 5bd429428101 -r 5c6e09bc7d69 includes/functions.php --- a/includes/functions.php Thu Jan 24 22:06:09 2008 -0500 +++ b/includes/functions.php Thu Jan 24 22:08:51 2008 -0500 @@ -2739,7 +2739,7 @@ $gzip_contents = ob_get_contents(); ob_end_clean(); - $return = ob_gzhandler($gzip_contents); + $return = @ob_gzhandler($gzip_contents); if ( $return ) { header('Content-encoding: gzip');