From: Brion Vibber Date: Mon, 1 Sep 2003 04:16:44 +0000 (+0000) Subject: De-bold and fix undelete link X-Git-Tag: 1.1.0~300 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=edd56ab0bd73c26313ed313ba3ed09ee46c813c7;p=lhc%2Fweb%2Fwiklou.git De-bold and fix undelete link --- diff --git a/includes/Skin.php b/includes/Skin.php index b4fa66112c..ed971e4417 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -369,10 +369,10 @@ class Skin { } if( $wgUser->isSysop() && ($n = $wgTitle->isDeleted() ) ) { - $s .= " | " . wfMsg( "thisisdeleted", + $s .= " | " . wfMsg( "thisisdeleted", $this->makeKnownLink( - $wgLang->SpecialPage( "Undelete/" . $wgTitle->getText() ), - wfMsg( "restorelink", $n ) ) ) . ""; + $wgLang->SpecialPage( "Undelete/" . $wgTitle->getPrefixedDBkey() ), + wfMsg( "restorelink", $n ) ) ); } return $s; }