From f615325e85352554620c70ce7feea5424b288168 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Mon, 3 Dec 2007 09:52:51 +0000 Subject: [PATCH] 1 PHP Strict Standards: Only variables should be assigned by reference in /var/www/w/includes/Skin.php on line 1506 --- includes/Skin.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/Skin.php b/includes/Skin.php index a9b91e7b5d..1001572d53 100644 --- a/includes/Skin.php +++ b/includes/Skin.php @@ -1499,11 +1499,11 @@ END; # If it's present, the link points to this page, otherwise # it points to the talk page if( $wgTitle->isTalkPage() ) { - $title =& $wgTitle; + $title = $wgTitle; } elseif( $wgOut->showNewSectionLink() ) { - $title =& $wgTitle; + $title = $wgTitle; } else { - $title =& $wgTitle->getTalkPage(); + $title = $wgTitle->getTalkPage(); } return $this->makeKnownLinkObj( $title, wfMsg( 'postcomment' ), 'action=edit§ion=new' ); -- 2.20.1