From 9fbeca555273d90ca72618c0e021803d2503bb9e Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Wed, 9 Feb 2011 17:06:41 +0000 Subject: [PATCH] Follow-up r81604: Prefix new classes with 'mw-' per [[Manual:Coding conventions]] --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index cf3f69d9c7..587ac65882 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -655,7 +655,7 @@ abstract class Skin extends Linker { // bug 23315: provide a class based on the canonical special page name without subpages list( $canonicalName ) = SpecialPage::resolveAliasWithSubpage( $title->getDBkey() ); if ( $canonicalName ) { - $type .= ' ' . Sanitizer::escapeClass( "special-$canonicalName" ); + $type .= ' ' . Sanitizer::escapeClass( "mw-special-$canonicalName" ); } else { $type .= ' mw-invalidspecialpage'; } -- 2.20.1