Index: trunk/phase3/includes/Skin.php |
— | — | @@ -591,7 +591,7 @@ |
592 | 592 | 'mediawiki ns-'.$wgTitle->getNamespace(). |
593 | 593 | ' '.( $wgContLang->isRTL() ? "rtl" : "ltr" ). |
594 | 594 | ' '.Sanitizer::escapeClass( 'page-'.$wgTitle->getPrefixedText() ). |
595 | | - ' '.( $wgTitle->isTalkPage() ? "ns-talk" : ( $wgTitle->isTalkPage() ? "ns-talk" : ( $wgTitle->getNamespace() == NS_SPECIAL ? "ns-special" : "ns-subject" ) ) ). |
| 595 | + ' '. $wgTitle->isTalkPage() ? "ns-talk" : ( $wgTitle->getNamespace() == NS_SPECIAL ? "ns-special" : "ns-subject" ) . |
596 | 596 | ' skin-'. Sanitizer::escapeClass( $this->getSkinName( ) ); |
597 | 597 | return $a; |
598 | 598 | } |