From caceeaae57641af713d1b5f3bf250061b78fa52c Mon Sep 17 00:00:00 2001 From: Zheng Zhu Date: Fri, 24 Sep 2004 18:31:16 +0000 Subject: [PATCH] Replaced call to deprecated Namespace::getSpecial(); update comment on autoConvert() --- languages/Language.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/languages/Language.php b/languages/Language.php index 496f5ab466..cb129ed0b0 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -1607,7 +1607,7 @@ class Language { } function specialPage( $name ) { - return $this->getNsText( Namespace::getSpecial() ) . ':' . $name; + return $this->getNsText(NS_SPECIAL) . ':' . $name; } function getQuickbarSettings() { @@ -2016,6 +2016,9 @@ class Language { return $text; } + /* this does the real conversion to the preferred variant. + see LanguageZh.php for example + */ function autoConvert($text) { return $text; } -- 2.20.1