From 95d355bac876f9c4ba0692aae780ed778b080ce5 Mon Sep 17 00:00:00 2001 From: raymond Date: Fri, 7 Sep 2012 10:52:49 +0200 Subject: [PATCH] Replace non standard 'tt' with 'code' for better HTML5 conformity See http://www.w3.org/wiki/HTML/Elements/tt Change-Id: I902a6cab5310cd726c84cbd87840bce2c0d51eda --- 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 c895daec74..4036ebb267 100644 --- a/includes/specials/SpecialTags.php +++ b/includes/specials/SpecialTags.php @@ -69,7 +69,7 @@ class SpecialTags extends SpecialPage { } $newRow = ''; - $newRow .= Xml::tags( 'td', null, Xml::element( 'tt', null, $tag ) ); + $newRow .= Xml::tags( 'td', null, Xml::element( 'code', null, $tag ) ); $disp = ChangeTags::tagDescription( $tag ); $disp .= ' '; -- 2.20.1