X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=2e0a48e3d4c1acad08ff7abd7d1b298ec6c345f2;hb=399956f4209406fa49898022e34a9741d2c7035f;hp=ef02aae090c405a02b41273c5daca01b3f3bbdc1;hpb=9e103d3dc30ae5fa364ff110dcc16b7ce5996932;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index ef02aae090..2e0a48e3d4 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1383,7 +1383,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '171'; +$wgStyleVersion = '177'; # Server-side caching: @@ -1621,6 +1621,7 @@ $wgAllowSlowParserFunctions = false; */ $wgJobClasses = array( 'refreshLinks' => 'RefreshLinksJob', + 'refreshLinks2' => 'RefreshLinksJob2', 'htmlCacheUpdate' => 'HTMLCacheUpdateJob', 'html_cache_update' => 'HTMLCacheUpdateJob', // backwards-compatible 'sendMail' => 'EmaillingJob', @@ -1633,7 +1634,7 @@ $wgJobClasses = array( * Expensive Querypages are already updated. */ $wgSpecialPageCacheUpdates = array( - 'Statistics' => 'SiteStatsUpdate::cacheUpdate' + 'Statistics' => array('SiteStatsUpdate','cacheUpdate') ); /** @@ -2746,6 +2747,11 @@ $wgLogActions = array( */ $wgLogActionsHandlers = array(); +/** + * Maintain a log of newusers at Log/newusers? + */ +$wgNewUserLog = true; + /** * List of special pages, followed by what subtitle they should go under * at Special:SpecialPages @@ -2770,6 +2776,7 @@ $wgSpecialPageGroups = array( 'Deadendpages' => 'maintenance', 'Wantedpages' => 'maintenance', 'Wantedcategories' => 'maintenance', + 'Wantedfiles' => 'maintenance', 'Unwatchedpages' => 'maintenance', 'Fewestrevisions' => 'maintenance', @@ -2821,6 +2828,7 @@ $wgSpecialPageGroups = array( 'Mytalk' => 'redirects', 'Mycontributions' => 'redirects', 'Search' => 'redirects', + 'LinkSearch' => 'redirects', 'Movepage' => 'pagetools', 'MergeHistory' => 'pagetools',