From 80df1e1b9aafcad46ffedfae2b3343af3f85d732 Mon Sep 17 00:00:00 2001 From: Legoktm Date: Tue, 7 Apr 2015 18:19:23 +0000 Subject: [PATCH] Revert "Hide HHVM tag on Special:{Contributions,RecentChanges,...}" This reverts commit 494989772cfce8805a10c2cd497880f6f6793896. Bug: T1205 Change-Id: If47af4a663530d9a32c1d24b6b55a63954f53fcb --- includes/ChangeTags.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/includes/ChangeTags.php b/includes/ChangeTags.php index 87c6ce5c03..a3c23608d9 100644 --- a/includes/ChangeTags.php +++ b/includes/ChangeTags.php @@ -34,17 +34,13 @@ class ChangeTags { public static function formatSummaryRow( $tags, $page ) { global $wgLang; - $tags = explode( ',', $tags ); - - // XXX(Ori Livneh, 2014-11-08): remove once bug 73181 is resolved. - $tags = array_diff( $tags, array( 'HHVM', '' ) ); - if ( !$tags ) { return array( '', array() ); } $classes = array(); + $tags = explode( ',', $tags ); $displayTags = array(); foreach ( $tags as $tag ) { $displayTags[] = Xml::tags( -- 2.20.1