From 4bbc93d03ed00bee17a564a16a0b59181fae65eb Mon Sep 17 00:00:00 2001 From: Erik Moeller Date: Fri, 18 Mar 2005 20:43:07 +0000 Subject: [PATCH] documenting and initializing $wgUseCommaCount --- includes/DefaultSettings.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 1c9f69da6e..d4bafc89de 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -477,6 +477,18 @@ $wgUseOldExistenceCheck = false; # use old prefill link method, for debugging o */ $wgEnableParserCache = true; +/** + * Under which condition should a page in the main namespace be counted + * as a valid article? If $wgUseCommaCount is set to true, it will be + * counted if it contains at least one comma. If it is set to false + * (default), it will only be counted if it contains at least one [[wiki + * link]]. See http://meta.wikimedia.org/wiki/Help:Article_count + * + * Retroactively changing this variable will not affect + * the existing count (cf. maintenance/recount.sql). +*/ +$wgUseCommaCount = false; + /**#@-*/ /** -- 2.20.1