Remove sneaky space in class-> method() call
authorAntoine Musso <hashar@users.mediawiki.org>
Tue, 22 Mar 2011 22:26:58 +0000 (22:26 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Tue, 22 Mar 2011 22:26:58 +0000 (22:26 +0000)
follow up r82406

includes/ChangeTags.php

index 3366f69..942440c 100644 (file)
@@ -173,7 +173,7 @@ class ChangeTags {
 
                $html = implode( '&#160;', $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;