From af3b5fb9ac61ac9385c8ea450851665f9067c5be Mon Sep 17 00:00:00 2001 From: MrDeff Date: Tue, 27 Mar 2018 12:56:53 +0700 Subject: [PATCH] fix getList --- src/classes/task/commentitem.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/classes/task/commentitem.php b/src/classes/task/commentitem.php index b16b123d..03867961 100644 --- a/src/classes/task/commentitem.php +++ b/src/classes/task/commentitem.php @@ -30,12 +30,7 @@ public function getManifest() */ public function getList($taskId, $order, $filter) { - $result = $this->client->call('task.commentitem.getmanifest', - array( - 'TASKID' => $taskId, - 'ORDER' => $order, - 'FILTER'=> $filter - )); + $result = $this->client->call('task.commentitem.getlist', array($taskId, $order, $filter)); return $result; }