aboutsummaryrefslogtreecommitdiffstats
path: root/include/msglib.php
blob: 2c9a9a696427b7c997a9de33848a6cfee7336085 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php

/* Common private message processing functions */

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
    );

    // If it was a first message in thread
    $z = q("SELECT * FROM mail WHERE mid = '%s' AND channel_id = %d",
        $message_id,
        $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
        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
        );
    }

}