From ce41f9a4173e901774ba6a1fd3484cb724f24a83 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 24 Aug 2009 13:52:44 +0000 Subject: [PATCH] Fixed parse error: syntax error, unexpected ')' in includes/EnotifNotifyJob.php on line 32 due to trailing comma --- includes/EnotifNotifyJob.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EnotifNotifyJob.php b/includes/EnotifNotifyJob.php index 9a90f63027..ee363ec5f8 100644 --- a/includes/EnotifNotifyJob.php +++ b/includes/EnotifNotifyJob.php @@ -28,7 +28,7 @@ class EnotifNotifyJob extends Job { $this->params['minorEdit'], $this->params['oldid'], $this->params['watchers'], - $this->params['deleted'], + $this->params['deleted'] ); return true; } -- 2.20.1