aboutsummaryrefslogtreecommitdiffstats
path: root/include/msglib.php
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2018-09-17 13:15:24 +0200
committerMax Kostikov <max@kostikov.co>2018-09-17 13:15:24 +0200
commit774729b2215b9d417a6736b1dbaa5bf593df760d (patch)
tree4ed5d9fe90ee44b2d4f2ca4448ff90970cb82955 /include/msglib.php
parent585bdf562a31e6fb822fc0b06bdfbbe5b8ba324e (diff)
downloadvolse-hubzilla-774729b2215b9d417a6736b1dbaa5bf593df760d.tar.gz
volse-hubzilla-774729b2215b9d417a6736b1dbaa5bf593df760d.tar.bz2
volse-hubzilla-774729b2215b9d417a6736b1dbaa5bf593df760d.zip
Update msglib.php
Diffstat (limited to 'include/msglib.php')
-rw-r--r--include/msglib.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/msglib.php b/include/msglib.php
index f196e7bee..f0bf523de 100644
--- a/include/msglib.php
+++ b/include/msglib.php
@@ -6,22 +6,22 @@ function msg_drop($message_id, $channel_id, $conv_guid) {
// Delete message
$r = q("DELETE FROM mail WHERE id = %d AND channel_id = %d",
- $message_id,
- $channel_id
+ intval($message_id),
+ intval($channel_id)
);
// Get new first message...
$r = q("SELECT mid, parent_mid FROM mail WHERE conv_guid = '%s' AND channel_id = %d ORDER BY id ASC LIMIT 1",
- $conv_guid,
- $channel_id
+ dbesc($conv_guid),
+ intval($channel_id)
);
// ...and if wasn't first before...
if ($r[0]['mid'] != $r[0]['parent_mid']) {
// ...refer whole thread to it
q("UPDATE mail SET parent_mid = '%s', mail_isreply = abs(mail_isreply - 1) WHERE conv_guid = '%s' AND channel_id = %d",
dbesc($r[0]['mid']),
- $conv_guid,
- $channel_id
+ dbesc($conv_guid),
+ intval($channel_id)
);
}