Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -367,7 +367,11 @@ |
368 | 368 | $this->mOutput->setTitleText( $wgContLang->getConvRuleTitle() ); |
369 | 369 | } elseif ( !( $wgDisableLangConversion |
370 | 370 | || isset( $this->mDoubleUnderscores['notitleconvert'] ) ) ) { |
371 | | - $this->mOutput->setTitleText( $wgContLang->convert( $title->getPrefixedText() ) ); |
| 371 | + if ( $title->getNamespace() == NS_SPECIAL ) { |
| 372 | + $this->setTitle( $wgContLang->convert( $title ) ); |
| 373 | + } else { |
| 374 | + $this->mOutput->setTitleText( $wgContLang->convert( $title->getPrefixedText() ) ); |
| 375 | + } |
372 | 376 | } |
373 | 377 | |
374 | 378 | $text = $this->mStripState->unstripNoWiki( $text ); |