From f748bd55ed0bfeb8511a7e28f9c2621963df0a05 Mon Sep 17 00:00:00 2001 From: MatmaRex Date: Wed, 10 Jul 2013 22:25:42 +0200 Subject: [PATCH] Make the table on Special:Tags sortable Makes for easier searching when a wiki has a couple dozen of them. Change-Id: I8646a95946294eca66003fa409a923eb854c9049 --- includes/specials/SpecialTags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialTags.php b/includes/specials/SpecialTags.php index d87f26365b..b19c6e8600 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -58,7 +58,7 @@ class SpecialTags extends SpecialPage { $html .= $this->doTagRow( $tag, 0 ); } - $out->addHTML( Xml::tags( 'table', array( 'class' => 'wikitable mw-tags-table' ), $html ) ); + $out->addHTML( Xml::tags( 'table', array( 'class' => 'wikitable sortable mw-tags-table' ), $html ) ); } function doTagRow( $tag, $hitcount ) { -- 2.20.1