Skip to content

Commit

Permalink
Merge pull request #101 from MrDeff/patch-1
Browse files Browse the repository at this point in the history
fix getList
  • Loading branch information
mesilov authored Apr 10, 2018
2 parents b9b7145 + af3b5fb commit 70d8f6b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/classes/task/commentitem.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 70d8f6b

Please sign in to comment.