From 7bd97758f7e1496c7d4a1fa4e7275c9d6c01c5c3 Mon Sep 17 00:00:00 2001 From: nicoco007 Date: Mon, 28 Dec 2015 15:35:53 -0500 Subject: [PATCH] Add documentation for wfClientAcceptsGzip() Change-Id: I18b9311d71278ca4c843908a11f77270f03cf534 --- includes/GlobalFunctions.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index e30b3715cf..c4db7e9158 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1983,11 +1983,13 @@ function wfShowingResults( $offset, $limit ) { } /** - * @todo document - * @todo FIXME: We may want to blacklist some broken browsers + * Whether the client accept gzip encoding * - * @param bool $force - * @return bool Whereas client accept gzip compression + * Uses the Accept-Encoding header to check if the client supports gzip encoding. + * Use this when considering to send a gzip-encoded response to the client. + * + * @param bool $force Forces another check even if we already have a cached result. + * @return bool */ function wfClientAcceptsGzip( $force = false ) { static $result = null; -- 2.20.1