From ef5b93b1e21e69472e8ca0fc539ff153350ae4a2 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sun, 10 Aug 2008 16:48:15 +0000 Subject: [PATCH] Cleanup to r39058. Slightly less code than before. Same result :) --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 92e593cf8a..d4d4bdea34 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -591,7 +591,7 @@ END; 'mediawiki ns-'.$wgTitle->getNamespace(). ' '.( $wgContLang->isRTL() ? "rtl" : "ltr" ). ' '.Sanitizer::escapeClass( 'page-'.$wgTitle->getPrefixedText() ). - ' '.( $wgTitle->isTalkPage() ? "ns-talk" : ( $wgTitle->isTalkPage() ? "ns-talk" : ( $wgTitle->getNamespace() == NS_SPECIAL ? "ns-special" : "ns-subject" ) ) ). + ' '. $wgTitle->isTalkPage() ? "ns-talk" : ( $wgTitle->getNamespace() == NS_SPECIAL ? "ns-special" : "ns-subject" ) . ' skin-'. Sanitizer::escapeClass( $this->getSkinName( ) ); return $a; } -- 2.20.1