Removing the recent changes fieldset, per complaints from some users.
authorRotem Liss <rotem@users.mediawiki.org>
Sat, 21 Jun 2008 10:51:02 +0000 (10:51 +0000)
committerRotem Liss <rotem@users.mediawiki.org>
Sat, 21 Jun 2008 10:51:02 +0000 (10:51 +0000)
includes/specials/SpecialRecentchanges.php

index a97c34c..5058091 100644 (file)
@@ -334,7 +334,6 @@ class SpecialRecentChanges extends SpecialPage {
 
                $panel = array();
                $panel[] = rcOptionsPanel( $defaults, $nondefaults );
-               $panel[] = '<hr />';
 
                $extraOpts = array();
                $extraOpts['namespace'] = $this->namespaceFilterForm( $opts );
@@ -371,9 +370,7 @@ class SpecialRecentChanges extends SpecialPage {
                $panel[] = $form;
                $panelString = implode( "\n", $panel );
 
-               $wgOut->addHTML(
-                       Xml::fieldset( wfMsg( 'recentchanges' ), $panelString, array( 'class' => 'rcoptions' ) )
-               );
+               $wgOut->addHTML( $panelString );
        }
 
        /**