Fix missing semi-colon: &#160 ->  
authorBrian Wolff <bawolff+wn@gmail.com>
Mon, 14 Dec 2015 04:25:51 +0000 (23:25 -0500)
committerLegoktm <legoktm.wikipedia@gmail.com>
Mon, 14 Dec 2015 05:10:26 +0000 (05:10 +0000)
The error is most noticable when transcluding {{Special:Contributions}}

Follows up 43c770c9543.

Change-Id: I67e44e6c655ff31dcc1c3a4716b63e3e91411a07

includes/specials/SpecialContributions.php

index b1908c2..fc9f750 100644 (file)
@@ -482,7 +482,7 @@ class SpecialContributions extends IncludableSpecialPage {
                        $filterSelection = Html::rawElement(
                                'td',
                                array(),
-                               implode( '&#160', $tagFilter )
+                               implode( '&#160;', $tagFilter )
                        );
                } else {
                        $filterSelection = Html::rawElement( 'td', array( 'colspan' => 2 ), '' );