Skip to content

Commit

Permalink
fix catchable error in \Bitrix24\Task\Item::update()
Browse files Browse the repository at this point in the history
  • Loading branch information
umanshield committed Jul 4, 2016
1 parent 9f42ee7 commit 0c5e391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/classes/task/item.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function getData($taskId)
*/
public function update($taskId, $taskData)
{
$result = $this->client->call('task.item.update', $taskId, array($taskData));
$result = $this->client->call('task.item.update', array($taskId, $taskData));
return $result;
}

Expand Down

0 comments on commit 0c5e391

Please sign in to comment.