From c0986ab5b3d44d19c6afdbeec99a1cdfaecd87cc Mon Sep 17 00:00:00 2001 From: Trevor Parscal Date: Fri, 17 Jul 2009 00:01:48 +0000 Subject: [PATCH] Solves double escaping issue for moveThisPage function (used by CologneBlue and Standard skins) - seen when on pages with titles that contain diacritical marks. --- includes/Skin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Skin.php b/includes/Skin.php index 23d636fd4a..fbe880de35 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1735,7 +1735,7 @@ END; SpecialPage::getTitleFor( 'Movepage' ), wfMsg( 'movethispage' ), array(), - array( 'target' => $this->mTitle->getPrefixedURL() ), + array( 'target' => $this->mTitle->getPrefixedDBkey() ), array( 'known', 'noclasses' ) ); } else { -- 2.20.1