From f8b206a31fd6fc503c1a295b688151aa787b68cf Mon Sep 17 00:00:00 2001 From: Zheng Zhu Date: Tue, 19 Oct 2004 18:03:58 +0000 Subject: [PATCH] special conversion for displaying title --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index c52935898f..9177c31ee5 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -160,7 +160,7 @@ class OutputPage { function setHTMLTitle( $name ) {$this->mHTMLtitle = $name; } function setPageTitle( $name ) { global $action, $wgContLang; - $name = $wgContLang->autoConvert($name); + $name = $wgContLang->convert($name, true); $this->mPagetitle = $name; if(!empty($action)) { $taction = $this->getPageTitleActionText(); -- 2.20.1