aboutsummaryrefslogtreecommitdiffstats
path: root/include/message.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-05-31 20:59:36 -0700
committerzotlabs <mike@macgirvin.com>2017-05-31 21:01:51 -0700
commit8ebb0006507e12f8570ea126c4146ea14b71fd7f (patch)
tree820c290627ca3245c87c8c5a965e2eb590a52abe /include/message.php
parent14229d0dd3205ea1e85d2c26d6c79bd68d19eda3 (diff)
downloadvolse-hubzilla-8ebb0006507e12f8570ea126c4146ea14b71fd7f.tar.gz
volse-hubzilla-8ebb0006507e12f8570ea126c4146ea14b71fd7f.tar.bz2
volse-hubzilla-8ebb0006507e12f8570ea126c4146ea14b71fd7f.zip
minor export issue with mail
Diffstat (limited to 'include/message.php')
-rw-r--r--include/message.php10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/message.php b/include/message.php
index 4e8e44adc..609ceb354 100644
--- a/include/message.php
+++ b/include/message.php
@@ -441,10 +441,12 @@ function private_messages_drop($channel_id, $messageitem_id, $drop_conversation
intval($channel_id)
);
if($z) {
- q("delete from conv where guid = '%s' and uid = %d",
- dbesc($x[0]['conv_guid']),
- intval($channel_id)
- );
+ if($x[0]['conv_guid']) {
+ q("delete from conv where guid = '%s' and uid = %d",
+ dbesc($x[0]['conv_guid']),
+ intval($channel_id)
+ );
+ }
$m['mail'] = array();
foreach($z as $zz) {
xchan_mail_query($zz);