Fix broken indentation
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 13 Jan 2012 08:41:33 +0000 (08:41 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 13 Jan 2012 08:41:33 +0000 (08:41 +0000)
includes/specials/SpecialRecentchanges.php

index 5a6f93c..51baef9 100644 (file)
@@ -806,12 +806,12 @@ class SpecialRecentChanges extends IncludableSpecialPage {
                // show/hide links
                $showhide = array( wfMsg( 'show' ), wfMsg( 'hide' ) );
                $filters = array(
-                       'hideminor'     => 'rcshowhideminor',
-                       'hidebots'      => 'rcshowhidebots',
-                       'hideanons'     => 'rcshowhideanons',
-                       'hideliu'               => 'rcshowhideliu',
+                       'hideminor' => 'rcshowhideminor',
+                       'hidebots'  => 'rcshowhidebots',
+                       'hideanons' => 'rcshowhideanons',
+                       'hideliu'   => 'rcshowhideliu',
                        'hidepatrolled' => 'rcshowhidepatr',
-                       'hidemyself'    => 'rcshowhidemine'
+                       'hidemyself' => 'rcshowhidemine'
                );
                foreach ( $this->customFilters as $key => $params ) {
                        $filters[$key] = $params['msg'];