From a437d6e20529f3389921dd4c9faf628587af6e53 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 24 Apr 2005 05:06:09 +0000 Subject: [PATCH] * (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. --- includes/Article.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); -- 2.20.1