From: Rotem Liss Date: Fri, 9 Nov 2007 18:08:30 +0000 (+0000) Subject: Fix double encoding. X-Git-Tag: 1.31.0-rc.0~50938 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=3a43e9e7f2c5fdcb0bfe6d5c20d6c240c0ec38b9;p=lhc%2Fweb%2Fwiklou.git Fix double encoding. --- diff --git a/includes/SpecialUndelete.php b/includes/SpecialUndelete.php index da571045f0..22ad961dca 100644 --- a/includes/SpecialUndelete.php +++ b/includes/SpecialUndelete.php @@ -672,7 +672,7 @@ class UndeleteForm { $wgOut->setPageTitle( wfMsg( 'undeletepage' ) ); $link = $skin->makeKnownLinkObj( - SpecialPage::getTitleFor( 'Undelete', $this->mTargetObj->getPrefixedUrl() ), + SpecialPage::getTitleFor( 'Undelete', $this->mTargetObj->getPrefixedDBkey() ), htmlspecialchars( $this->mTargetObj->getPrefixedText() ) ); $time = htmlspecialchars( $wgLang->timeAndDate( $timestamp, true ) );