Skip to content

Commit

Permalink
Fix parameter count.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Aug 10, 2016
1 parent e0801ec commit 8e5f2da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whups/lib/Driver/Sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -3276,7 +3276,7 @@ public function updateLog($ticket_id, $user, array $changes = array(),
$this->_db->insert(
'INSERT INTO whups_logs (transaction_id, '
. 'ticket_id, log_timestamp, log_type, log_value, '
. 'log_value_num) VALUES (?, ?, ?, ?, ?)',
. 'log_value_num) VALUES (?, ?, ?, ?, ?, ?)',
array((int)$transactionId,
(int)$ticket_id,
time(),
Expand Down

0 comments on commit 8e5f2da

Please sign in to comment.