diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-19 11:23:38 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-19 11:23:38 +0200 |
commit | ec7cbe272af07d184f8ecd5d2285bb8f31d2d9a4 (patch) | |
tree | 8c15ce5b6ab6de0d6c8d304084eed67c037f8811 /include/zot.php | |
parent | 71c599f50ef2933f3898d55823aec351f95d5828 (diff) | |
parent | 98bc1ed600639a8edff78795d8e71019d9dddd18 (diff) | |
download | volse-hubzilla-ec7cbe272af07d184f8ecd5d2285bb8f31d2d9a4.tar.gz volse-hubzilla-ec7cbe272af07d184f8ecd5d2285bb8f31d2d9a4.tar.bz2 volse-hubzilla-ec7cbe272af07d184f8ecd5d2285bb8f31d2d9a4.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'include/zot.php')
-rw-r--r-- | include/zot.php | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/zot.php b/include/zot.php index b29e86dfa..e31d650d2 100644 --- a/include/zot.php +++ b/include/zot.php @@ -12,6 +12,7 @@ require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/queue_fn.php'); require_once('include/perm_upgrade.php'); +require_once('include/msglib.php'); /** @@ -2331,16 +2332,13 @@ function process_mail_delivery($sender, $arr, $deliveries) { } - $r = q("select id from mail where mid = '%s' and channel_id = %d limit 1", + $r = q("select id, conv_guid from mail where mid = '%s' and channel_id = %d limit 1", dbesc($arr['mid']), intval($channel['channel_id']) ); if($r) { if(intval($arr['mail_recalled'])) { - $x = q("delete from mail where id = %d and channel_id = %d", - intval($r[0]['id']), - intval($channel['channel_id']) - ); + msg_drop($r[0]['id'], $channel['channel_id'], $r[0]['conv_guid']); $DR->update('mail recalled'); $result[] = $DR->get(); logger('mail_recalled'); |