align $wgActions array values
authorAntoine Musso <hashar@users.mediawiki.org>
Mon, 30 Jan 2012 16:33:36 +0000 (16:33 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Mon, 30 Jan 2012 16:33:36 +0000 (16:33 +0000)
ping r109195

includes/DefaultSettings.php

index 20e43ab..c0ef5b3 100644 (file)
@@ -5318,24 +5318,24 @@ $wgMaxRedirectLinksRetrieved = 500;
  * Unsetting core actions will probably cause things to complain loudly.
  */
 $wgActions = array(
-       'credits' => true,
-       'delete' => true,
-       'edit' => true,
-       'history' => true,
-       'info' => true,
-       'markpatrolled' => true,
-       'protect' => true,
-       'purge' => true,
-       'raw' => true,
-       'render' => true,
-       'revert' => true,
+       'credits'        => true,
+       'delete'         => true,
+       'edit'           => true,
+       'history'        => true,
+       'info'           => true,
+       'markpatrolled'  => true,
+       'protect'        => true,
+       'purge'          => true,
+       'raw'            => true,
+       'render'         => true,
+       'revert'         => true,
        'revisiondelete' => true,
-       'rollback' => true,
-       'submit' => true,
-       'unprotect' => true,
-       'unwatch' => true,
-       'view' => true,
-       'watch' => true,
+       'rollback'       => true,
+       'submit'         => true,
+       'unprotect'      => true,
+       'unwatch'        => true,
+       'view'           => true,
+       'watch'          => true,
 );
 
 /**