Revert r36523 -- removal of the fieldset made Recentchanges/Recentchangeslinked very ugly!

Options were in a table, which ended up showing white background without the fieldset (some sites use a light blue background for specials).
Generally everything just ran together, making it hard to visually distinguish the bits of the page.
It's looking much better with the set restored...
This commit is contained in:
Brion Vibber 2008-07-02 02:31:05 +00:00
parent 3f8faf178c
commit 53f9fe221d

View file

@ -123,6 +123,7 @@ class SpecialRecentChanges extends SpecialPage {
$batch->execute();
$this->webOutput( $rows, $opts );
}
}
/**
@ -407,6 +408,7 @@ class SpecialRecentChanges extends SpecialPage {
$panel = array();
$panel[] = $this->optionsPanel( $defaults, $nondefaults );
$panel[] = '<hr />';
$extraOpts = $this->getExtraOptions( $opts );
@ -434,7 +436,9 @@ class SpecialRecentChanges extends SpecialPage {
$panel[] = $form;
$panelString = implode( "\n", $panel );
$wgOut->addHTML( '<div class="rcoptions">' . $panelString . '</div>' );
$wgOut->addHTML(
Xml::fieldset( wfMsg( 'recentchanges' ), $panelString, array( 'class' => 'rcoptions' ) )
);
$this->setBottomText( $wgOut, $opts );
}