From: Antoine Musso Date: Tue, 8 Nov 2011 09:10:33 +0000 (+0000) Subject: Prefix debug message in wfClientAcceptsGzip() X-Git-Tag: 1.31.0-rc.0~26647 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=47a8c4d7ff7c33cbb6204267534026b40aa95033;p=lhc%2Fweb%2Fwiklou.git Prefix debug message in wfClientAcceptsGzip() --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 8f9513b17d..82c1cef32a 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1637,7 +1637,7 @@ function wfClientAcceptsGzip( $force = false ) { $result = false; return $result; } - wfDebug( " accepts gzip\n" ); + wfDebug( "wfClientAcceptsGzip: client accepts gzip.\n" ); $result = true; } }