From: Niklas Laxström Date: Thu, 28 Jul 2011 12:13:54 +0000 (+0000) Subject: Fu r92231: PHP Fatal error: Call to a member function parse() on a non-object in... X-Git-Tag: 1.31.0-rc.0~28564 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/%7B%7B%20url_for%28%27vote%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=commitdiff_plain;h=e7b47a6c6d9d89e392e5aacbf5f7d9d2ace301e5;p=lhc%2Fweb%2Fwiklou.git 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? --- 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; }