aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2018-09-16 00:43:45 +0200
committerMax Kostikov <max@kostikov.co>2018-09-16 00:43:45 +0200
commit585bdf562a31e6fb822fc0b06bdfbbe5b8ba324e (patch)
treed7b6f887a0833cd3b6679ddf25a8efa00ad2df2d /include
parent034441bd13431a4a74e222311885665477e36a54 (diff)
downloadvolse-hubzilla-585bdf562a31e6fb822fc0b06bdfbbe5b8ba324e.tar.gz
volse-hubzilla-585bdf562a31e6fb822fc0b06bdfbbe5b8ba324e.tar.bz2
volse-hubzilla-585bdf562a31e6fb822fc0b06bdfbbe5b8ba324e.zip
Update msglib.php
Diffstat (limited to 'include')
-rw-r--r--include/msglib.php16
1 files changed, 6 insertions, 10 deletions
diff --git a/include/msglib.php b/include/msglib.php
index 2c9a9a696..f196e7bee 100644
--- a/include/msglib.php
+++ b/include/msglib.php
@@ -10,18 +10,14 @@ function msg_drop($message_id, $channel_id, $conv_guid) {
$channel_id
);
- // If it was a first message in thread
- $z = q("SELECT * FROM mail WHERE mid = '%s' AND channel_id = %d",
- $message_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
);
- if (! $z) {
- // Get new first message...
- $r = q("SELECT mid FROM mail WHERE conv_guid = '%s' AND channel_id = %d ORDER BY id ASC LIMIT 1",
- $conv_guid,
- $channel_id
- );
- // ...and refer whole thread to it
+ // ...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,