From 47a8c4d7ff7c33cbb6204267534026b40aa95033 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Tue, 8 Nov 2011 09:10:33 +0000 Subject: [PATCH] Prefix debug message in wfClientAcceptsGzip() --- includes/GlobalFunctions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.20.1