From 0b7a9f1167465f66a0b7724a83c72de6e1b0e609 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 27 Aug 2008 15:07:30 +0000 Subject: [PATCH] Can't add to a variable if it doesn't exist... --- includes/specials/SpecialWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialWatchlist.php b/includes/specials/SpecialWatchlist.php index f4f29986ad..d281cd6094 100644 --- a/includes/specials/SpecialWatchlist.php +++ b/includes/specials/SpecialWatchlist.php @@ -269,7 +269,7 @@ function wfSpecialWatchlist( $par ) { $links[] = $skin->makeKnownLinkObj( $thisTitle, $label, $linkBits ); # Namespace filter and put the whole form together. - $form .= $wlInfo; + $form = $wlInfo; $form .= $cutofflinks; $form .= implode( ' | ', $links ); $form .= Xml::openElement( 'form', array( 'method' => 'post', 'action' => $thisTitle->getLocalUrl() ) ); -- 2.20.1