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:
parent
3f8faf178c
commit
53f9fe221d
1 changed files with 5 additions and 1 deletions
|
|
@ -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 );
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue