Merge "Remove these two rights autoreview and torunblocked from mediawiki"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 10 Jun 2016 19:37:25 +0000 (19:37 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 10 Jun 2016 19:37:25 +0000 (19:37 +0000)
1  2 
includes/DefaultSettings.php

@@@ -567,14 -567,10 +567,14 @@@ $wgUploadDialog = 
                // * upload-form-label-not-own-work-local-generic-foreign
                'foreign' => 'generic-foreign',
        ],
 -      // Upload comment to use. Available replacements:
 +      // Upload comments to use for 'local' and 'foreign' uploads. This can also be set to a single
 +      // string value, in which case it is used for both kinds of uploads. Available replacements:
        // * $HOST - domain name from which a cross-wiki upload originates
        // * $PAGENAME - wiki page name from which an upload originates
 -      'comment' => '',
 +      'comment' => [
 +              'local' => '',
 +              'foreign' => '',
 +      ],
        // Format of the file page wikitext to be generated from the fields input by the user.
        'format' => [
                // Wrapper for the whole page. Available replacements:
@@@ -2390,13 -2386,6 +2390,13 @@@ $wgSessionHandler = null
   */
  $wgPHPSessionHandling = 'enable';
  
 +/**
 + * Number of internal PBKDF2 iterations to use when deriving session secrets.
 + *
 + * @since 1.28
 + */
 +$wgSessionPbkdf2Iterations = 10001;
 +
  /**
   * If enabled, will send MemCached debugging information to $wgDebugLogFile
   */
@@@ -5642,7 -5631,6 +5642,6 @@@ $wgGrantPermissions = []
  
  $wgGrantPermissions['basic']['autoconfirmed'] = true;
  $wgGrantPermissions['basic']['autopatrol'] = true;
- $wgGrantPermissions['basic']['autoreview'] = true;
  $wgGrantPermissions['basic']['editsemiprotected'] = true;
  $wgGrantPermissions['basic']['ipblock-exempt'] = true;
  $wgGrantPermissions['basic']['nominornewtalk'] = true;
@@@ -5650,7 -5638,6 +5649,6 @@@ $wgGrantPermissions['basic']['patrolmar
  $wgGrantPermissions['basic']['purge'] = true;
  $wgGrantPermissions['basic']['read'] = true;
  $wgGrantPermissions['basic']['skipcaptcha'] = true;
- $wgGrantPermissions['basic']['torunblocked'] = true;
  $wgGrantPermissions['basic']['writeapi'] = true;
  
  $wgGrantPermissions['highvolume']['bot'] = true;
@@@ -5982,12 -5969,6 +5980,12 @@@ $wgTrxProfilerLimits = 
                'writes' => 0,
                'readQueryTime' => 5
        ],
 +      // Deferred updates that run after HTTP response is sent
 +      'PostSend' => [
 +              'readQueryTime' => 5,
 +              'writeQueryTime' => 1,
 +              'maxAffected' => 500
 +      ],
        // Background job runner
        'JobRunner' => [
                'readQueryTime' => 30,