From: Chad Horohoe Date: Wed, 27 Aug 2008 15:07:30 +0000 (+0000) Subject: Can't add to a variable if it doesn't exist... X-Git-Tag: 1.31.0-rc.0~45623 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22suivi_revisions%22%29%20.%20%22?a=commitdiff_plain;h=0b7a9f1167465f66a0b7724a83c72de6e1b0e609;p=lhc%2Fweb%2Fwiklou.git Can't add to a variable if it doesn't exist... --- 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() ) );