[minor] silenced errors to ob_gzhandler()
authorDan
Thu, 24 Jan 2008 22:08:51 -0500
changeset 373 5c6e09bc7d69
parent 372 5bd429428101
child 374 5c740e430a05
[minor] silenced errors to ob_gzhandler()
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');