From: Brian Wolff Date: Mon, 14 Dec 2015 04:25:51 +0000 (-0500) Subject: Fix missing semi-colon:   ->   X-Git-Tag: 1.31.0-rc.0~8688 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/supprimer.php?a=commitdiff_plain;h=05d78a8b1d857a844e37fb01d1e0d4b5c1ff05c7;p=lhc%2Fweb%2Fwiklou.git Fix missing semi-colon:   ->   The error is most noticable when transcluding {{Special:Contributions}} Follows up 43c770c9543. Change-Id: I67e44e6c655ff31dcc1c3a4716b63e3e91411a07 --- diff --git a/includes/specials/SpecialContributions.php b/includes/specials/SpecialContributions.php index b1908c2fe4..fc9f750d84 100644 --- a/includes/specials/SpecialContributions.php +++ b/includes/specials/SpecialContributions.php @@ -482,7 +482,7 @@ class SpecialContributions extends IncludableSpecialPage { $filterSelection = Html::rawElement( 'td', array(), - implode( ' ', $tagFilter ) + implode( ' ', $tagFilter ) ); } else { $filterSelection = Html::rawElement( 'td', array( 'colspan' => 2 ), '' );