From 2087d13005d928756a0f4537abdf61fbf583a84c Mon Sep 17 00:00:00 2001 From: Krinkle Date: Mon, 6 Jun 2011 00:12:45 +0000 Subject: [PATCH] Fix syntax error (Follow-up r89545) --- includes/Article.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ); } /** -- 2.20.1