Skip to content

Commit

Permalink
fix cs
Browse files Browse the repository at this point in the history
  • Loading branch information
MBoretto committed Apr 12, 2016
1 parent 658750d commit 3b97af6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DB.php
Original file line number Diff line number Diff line change
Expand Up @@ -626,9 +626,9 @@ public static function insertMessageRequest(Message &$message)
$sth->bindParam(':date', $date, \PDO::PARAM_STR);
$sth->bindParam(':forward_from', $forward_from, \PDO::PARAM_INT);
$sth->bindParam(':forward_date', $forward_date, \PDO::PARAM_STR);
$reply_chat_id = null;
$reply_chat_id = null;
if ($reply_to_message_id) {
$reply_chat_id = $chat_id;
$reply_chat_id = $chat_id;
}
$sth->bindParam(':reply_to_chat', $reply_chat_id, \PDO::PARAM_INT);
$sth->bindParam(':reply_to_message', $reply_to_message_id, \PDO::PARAM_INT);
Expand Down

0 comments on commit 3b97af6

Please sign in to comment.