diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Bridge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Bridge.php b/src/Bridge.php index edbb4ce..ae3f867 100644 --- a/src/Bridge.php +++ b/src/Bridge.php @@ -93,7 +93,7 @@ class Bridge { $sql = 'UPDATE posts SET ' . 'message_id = ' . $this->db->quote($messageId) . ', ' . - 'in_reply_to = ' . $this->quote($inReplyTo) . ') ' . + 'in_reply_to = ' . $this->quote($inReplyTo) . ' ' . 'WHERE edit_id = ' . $editId; $count = $this->db->exec($sql); |