From f9918910697b4fe3d1b2cb8861af691a17a79224 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sat, 15 May 2004 03:40:03 +0000 Subject: [PATCH] Bug fix: anonymous user talk link at top was broken (if enabled, which it isn't on the live site) --- includes/SkinPHPTal.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SkinPHPTal.php b/includes/SkinPHPTal.php index 4e9d8b2338..bf39da2599 100644 --- a/includes/SkinPHPTal.php +++ b/includes/SkinPHPTal.php @@ -266,8 +266,8 @@ $usertalkUrlDetails = $this->makeTalkUrlDetails($this->userpage); $personal_urls['anontalk'] = array( 'text' => wfMsg('anontalk'), - 'href' => &$this->usertalkUrlDetails['href'], - 'class' => $this->usertalkUrlDetails['exists']?false:'new', + 'href' => &$usertalkUrlDetails['href'], + 'class' => $usertalkUrlDetails['exists']?false:'new', 'ttip' => wfMsg('tooltip-anontalk'), 'akey' => wfMsg('accesskey-anontalk') ); -- 2.20.1