Skip to content

Commit

Permalink
Merge pull request #45 from UmanShield/master
Browse files Browse the repository at this point in the history
fix catchable error in \Bitrix24\Task\Item::update()
  • Loading branch information
mesilov authored Jul 4, 2016
2 parents 9f42ee7 + 0c5e391 commit e902917
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 e902917

Please sign in to comment.