From: Brion Vibber Date: Sun, 24 Apr 2005 05:06:09 +0000 (+0000) Subject: * (bug 1963) Fix deletion log link when $wgCapitalLinks is off X-Git-Tag: 1.5.0alpha1~159 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dmembres/cotisations/gestion/rappel_supprimer.php?a=commitdiff_plain;h=a437d6e20529f3389921dd4c9faf628587af6e53;p=lhc%2Fweb%2Fwiklou.git * (bug 1963) Fix deletion log link when $wgCapitalLinks is off Also, it was the wrong link! Original fix didn't get ported up from REL1_4. --- diff --git a/includes/Article.php b/includes/Article.php index ff221b2d62..9666c98030 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -1666,8 +1666,8 @@ class Article { $wgOut->setRobotpolicy( 'noindex,nofollow' ); $sk = $wgUser->getSkin(); - $loglink = $sk->makeKnownLink( $wgContLang->getNsText( NS_PROJECT ) . - ':' . wfMsgForContent( 'dellogpage' ), + $loglink = $sk->makeKnownLink( $wgContLang->getNsText( NS_SPECIAL ) . + ':Log/delete', wfMsg( 'deletionlog' ) ); $text = wfMsg( 'deletedtext', $deleted, $loglink );