From: Antoine Musso Date: Tue, 22 Mar 2011 22:26:58 +0000 (+0000) Subject: Remove sneaky space in class-> method() call X-Git-Tag: 1.31.0-rc.0~31238 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=cfbb692141fa50a24a5d2237cbf1219e04912d4c;p=lhc%2Fweb%2Fwiklou.git Remove sneaky space in class-> method() call follow up r82406 --- diff --git a/includes/ChangeTags.php b/includes/ChangeTags.php index 3366f69339..942440c27b 100644 --- a/includes/ChangeTags.php +++ b/includes/ChangeTags.php @@ -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;