From: Chad Horohoe Date: Sun, 10 Aug 2008 16:48:15 +0000 (+0000) Subject: Cleanup to r39058. Slightly less code than before. Same result :) X-Git-Tag: 1.31.0-rc.0~45968 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=ef5b93b1e21e69472e8ca0fc539ff153350ae4a2;p=lhc%2Fweb%2Fwiklou.git Cleanup to r39058. Slightly less code than before. Same result :) --- 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; }