From: Siebrand Mazeland Date: Sat, 19 Jul 2008 13:46:54 +0000 (+0000) Subject: * Add PopularPages to group 'wiki' on Special:SpecialPages X-Git-Tag: 1.31.0-rc.0~46445 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=2092e49753b057938cfa3e92069752b52e9b168f;p=lhc%2Fweb%2Fwiklou.git * Add PopularPages to group 'wiki' on Special:SpecialPages * remove trailing whitespace --- diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 874e171509..dc5ac48455 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -2737,6 +2737,7 @@ $wgSpecialPageGroups = array( 'Lockdb' => 'wiki', 'Unlockdb' => 'wiki', 'Allmessages' => 'wiki', + 'PopularPages' => 'wiki', 'Specialpages' => 'other', 'Blockme' => 'other', @@ -3215,12 +3216,12 @@ $wgSlaveLagCritical = 30; * class The class name * * preprocessorClass The preprocessor class. Two classes are currently available: - * Preprocessor_Hash, which uses plain PHP arrays for tempoarary - * storage, and Preprocessor_DOM, which uses the DOM module for + * Preprocessor_Hash, which uses plain PHP arrays for tempoarary + * storage, and Preprocessor_DOM, which uses the DOM module for * temporary storage. Preprocessor_DOM generally uses less memory; * the speed of the two is roughly the same. - * - * If this parameter is not given, it uses Preprocessor_DOM if the + * + * If this parameter is not given, it uses Preprocessor_DOM if the * DOM module is available, otherwise it uses Preprocessor_Hash. * * Has no effect on Parser_OldPP.