Remove sneaky space in class-> method() call
follow up r82406
This commit is contained in:
parent
908254604e
commit
cfbb692141
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ class ChangeTags {
|
|||
|
||||
$html = implode( ' ', $data );
|
||||
$html .= "\n" . Xml::element( 'input', array( 'type' => 'submit', 'value' => wfMsg( 'tag-filter-submit' ) ) );
|
||||
$html .= "\n" . Html::hidden( 'title', $title-> getPrefixedText() );
|
||||
$html .= "\n" . Html::hidden( 'title', $title->getPrefixedText() );
|
||||
$html = Xml::tags( 'form', array( 'action' => $title->getLocalURL(), 'method' => 'get' ), $html );
|
||||
|
||||
return $html;
|
||||
|
|
|
|||
Loading…
Reference in a new issue