Remove sneaky space in class-> method() call

follow up r82406
This commit is contained in:
Antoine Musso 2011-03-22 22:26:58 +00:00
parent 908254604e
commit cfbb692141

View file

@ -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;