From e7b47a6c6d9d89e392e5aacbf5f7d9d2ace301e5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Thu, 28 Jul 2011 12:13:54 +0000 Subject: [PATCH] Fu r92231: PHP Fatal error: Call to a member function parse() on a non-object in /www/w/includes/specials/SpecialEditWatchlist.php on line 46 Maybe the method names need to be reconsidered to avoid errors like these? --- includes/specials/SpecialEditWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialEditWatchlist.php b/includes/specials/SpecialEditWatchlist.php index 1c381303c3..1ca21ace7f 100644 --- a/includes/specials/SpecialEditWatchlist.php +++ b/includes/specials/SpecialEditWatchlist.php @@ -43,7 +43,7 @@ class SpecialEditWatchlist extends UnlistedSpecialPage { array(), array( 'returnto' => $this->getTitle()->getPrefixedText() ) ); - $out->addHTML( wfMessage( 'watchlistanontext' )->rawParam( $llink )->parse() ); + $out->addHTML( wfMessage( 'watchlistanontext' )->rawParams( $llink )->parse() ); return; } -- 2.20.1