Followup r75763, fixup wrong change of deprecated method
No need to do separate htmlspecialchars et al, Xml::expandAttributes
This commit is contained in:
parent
22d873f85d
commit
0de35fc275
2 changed files with 8 additions and 4 deletions
|
|
@ -1223,7 +1223,7 @@ class EditPage {
|
|||
if ( $this->showHeader() === false )
|
||||
return;
|
||||
|
||||
$action = htmlspecialchars($this->getActionURL($wgTitle));
|
||||
$action = htmlspecialchars( $this->getActionURL( $wgTitle ) );
|
||||
|
||||
if ( $wgUser->getOption( 'showtoolbar' ) and !$this->isCssJsSubpage ) {
|
||||
# prepare toolbar for edit buttons
|
||||
|
|
@ -2355,7 +2355,9 @@ HTML
|
|||
);
|
||||
$checkboxes['minor'] =
|
||||
Xml::check( 'wpMinoredit', $checked['minor'], $attribs ) .
|
||||
" <label for='wpMinoredit' id='mw-editpage-minoredit'" . $skin->titleAttrib( 'minoredit', 'withaccess' ) . ">{$minorLabel}</label>";
|
||||
" <label for='wpMinoredit' id='mw-editpage-minoredit'" .
|
||||
Xml::expandAttributes( array( 'title' => $skin->titleAttrib( 'minoredit', 'withaccess' ) ) ) .
|
||||
">{$minorLabel}</label>";
|
||||
}
|
||||
|
||||
$watchLabel = wfMsgExt( 'watchthis', array( 'parseinline' ) );
|
||||
|
|
@ -2368,7 +2370,9 @@ HTML
|
|||
);
|
||||
$checkboxes['watch'] =
|
||||
Xml::check( 'wpWatchthis', $checked['watch'], $attribs ) .
|
||||
" <label for='wpWatchthis' id='mw-editpage-watch'" . $skin->titleAttrib( 'watch', 'withaccess' ) . ">{$watchLabel}</label>";
|
||||
" <label for='wpWatchthis' id='mw-editpage-watch'" .
|
||||
Xml::expandAttributes( array( 'title' => $skin->titleAttrib( 'watch', 'withaccess' ) ) ) .
|
||||
">{$watchLabel}</label>";
|
||||
}
|
||||
wfRunHooks( 'EditPageBeforeEditChecks', array( &$this, &$checkboxes, &$tabindex ) );
|
||||
return $checkboxes;
|
||||
|
|
|
|||
|
|
@ -1006,7 +1006,7 @@ CONTROL;
|
|||
'undo' => $this->mNewid
|
||||
) );
|
||||
$htmlLink = htmlspecialchars( wfMsg( 'editundo' ) );
|
||||
$htmlTitle = $wgUser->getSkin()->titleAttrib( 'undo' );
|
||||
$htmlTitle = Xml::expandAttributes( array( 'title' => $skin->titleAttrib( 'undo' ) ) );
|
||||
if ( $editable && !$this->mOldRev->isDeleted( Revision::DELETED_TEXT ) && !$this->mNewRev->isDeleted( Revision::DELETED_TEXT ) ) {
|
||||
$this->mNewtitle .= " (<a href='$newUndo' $htmlTitle>" . $htmlLink . "</a>)";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue