From: Trevor Parscal Date: Fri, 17 Jul 2009 00:01:48 +0000 (+0000) Subject: Solves double escaping issue for moveThisPage function (used by CologneBlue and Stand... X-Git-Tag: 1.31.0-rc.0~40882 X-Git-Url: http://git.cyclocoop.org/%22.%28%24lien.?a=commitdiff_plain;h=c0986ab5b3d44d19c6afdbeec99a1cdfaecd87cc;p=lhc%2Fweb%2Fwiklou.git Solves double escaping issue for moveThisPage function (used by CologneBlue and Standard skins) - seen when on pages with titles that contain diacritical marks. --- 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 {