X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=02be4738cc23215bf99324fb489a9f98b63269b0;hp=7127803b59888ef825fa77f6b746850ba8ca975f;hb=b29460a84d915f49ce361399b26efbfa34f77db0;hpb=4432e898be078eea73fbf072f5a383ec1ded0d67 diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 7127803b59..02be4738cc 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4881,7 +4881,6 @@ $wgDefaultUserOptions = [ 'hidepatrolled' => 0, 'hidecategorization' => 1, 'imagesize' => 2, - 'math' => 1, 'minordefault' => 0, 'newpageshidepatrolled' => 0, 'nickname' => '', @@ -5785,7 +5784,7 @@ $wgPasswordAttemptThrottle = [ ]; /** - * @var Array Map of (grant => right => boolean) + * @var array Map of (grant => right => boolean) * Users authorize consumers (like Apps) to act on their behalf but only with * a subset of the user's normal account rights (signed off on by the user). * The possible rights to grant to a consumer are bundled into groups called @@ -5887,7 +5886,7 @@ $wgGrantPermissions['createaccount']['createaccount'] = true; $wgGrantPermissions['privateinfo']['viewmyprivateinfo'] = true; /** - * @var Array Map of grants to their UI grouping + * @var array Map of grants to their UI grouping * @since 1.27 */ $wgGrantPermissionGroups = [ @@ -6806,6 +6805,10 @@ $wgRCWatchCategoryMembership = false; /** * Use RC Patrolling to check for vandalism (from recent changes and watchlists) * New pages and new files are included. + * + * @note If you disable all patrolling features, you probably also want to + * remove 'patrol' from $wgFilterLogTypes so a show/hide link isn't shown on + * Special:Log. */ $wgUseRCPatrol = true; @@ -6837,12 +6840,20 @@ $wgStructuredChangeFiltersLiveUpdatePollingRate = 3; /** * Use new page patrolling to check new pages on Special:Newpages + * + * @note If you disable all patrolling features, you probably also want to + * remove 'patrol' from $wgFilterLogTypes so a show/hide link isn't shown on + * Special:Log. */ $wgUseNPPatrol = true; /** * Use file patrolling to check new files on Special:Newfiles * + * @note If you disable all patrolling features, you probably also want to + * remove 'patrol' from $wgFilterLogTypes so a show/hide link isn't shown on + * Special:Log. + * * @since 1.27 */ $wgUseFilePatrol = true;