From: Krinkle Date: Mon, 6 Jun 2011 00:12:45 +0000 (+0000) Subject: Fix syntax error (Follow-up r89545) X-Git-Tag: 1.31.0-rc.0~29679 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=2087d13005d928756a0f4537abdf61fbf583a84c;p=lhc%2Fweb%2Fwiklou.git Fix syntax error (Follow-up r89545) --- diff --git a/includes/Article.php b/includes/Article.php index aef0e91caa..37dac153c0 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2400,7 +2400,7 @@ class Article { */ public function doWatch() { global $wgUser; - return WatchAction:doWatch( $this->mTitle, $wgUser ); + return WatchAction::doWatch( $this->mTitle, $wgUser ); } /** @@ -2419,7 +2419,7 @@ class Article { */ public function doUnwatch() { global $wgUser; - return WatchAction:doUnwatch( $this->mTitle, $wgUser ); + return WatchAction::doUnwatch( $this->mTitle, $wgUser ); } /**