Index: trunk/extensions/CentralNotice/SpecialNoticeTemplate.php |
— | — | @@ -407,15 +407,13 @@ |
408 | 408 | '<img src="'.$scriptPath.'/down-arrow.png" style="vertical-align:baseline;"/>' . wfMsg( 'centralnotice-insert', Language::commaList( $buttons ) ) |
409 | 409 | ); |
410 | 410 | $htmlOut .= Xml::textarea( 'templateBody', $body, 60, 20, $readonly ); |
| 411 | + $htmlOut .= Xml::closeElement( 'fieldset' ); |
411 | 412 | if ( $this->editable ) { |
412 | 413 | $htmlOut .= Xml::hidden( 'authtoken', $wgUser->editToken() ); |
413 | 414 | $htmlOut .= Xml::tags( 'div', |
414 | 415 | array( 'class' => 'cn-buttons' ), |
415 | | - Xml::submitButton( wfMsg( 'centralnotice-modify' ) ) |
| 416 | + Xml::submitButton( wfMsg( 'centralnotice-save-banner' ) ) |
416 | 417 | ); |
417 | | - } |
418 | | - $htmlOut .= Xml::closeElement( 'fieldset' ); |
419 | | - if ( $this->editable ) { |
420 | 418 | $htmlOut .= Xml::closeElement( 'form' ); |
421 | 419 | } |
422 | 420 | |