aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-05 17:11:38 -0800
committerfriendica <info@friendica.com>2012-12-05 17:11:38 -0800
commit270266357d76392660703d290ab159774cfc2081 (patch)
treec04344b4f21133d40ff9b8970a7091a0dcfcb302 /include
parent1c6f301d8faf2e6a5939e47c7a83655615bfc762 (diff)
downloadvolse-hubzilla-270266357d76392660703d290ab159774cfc2081.tar.gz
volse-hubzilla-270266357d76392660703d290ab159774cfc2081.tar.bz2
volse-hubzilla-270266357d76392660703d290ab159774cfc2081.zip
make mail replies work
Diffstat (limited to 'include')
-rwxr-xr-xinclude/items.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php
index 76e378d79..7e38469e8 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1629,7 +1629,12 @@ function mail_store($arr) {
$arr['body'] = ((x($arr,'body')) ? trim($arr['body']) : '');
$arr['mail_flags'] = ((x($arr,'mail_flags')) ? intval($arr['mail_flags']) : 0 );
-
+
+ if(! $arr['parent_uri']) {
+ logger('mail_store: missing parent');
+ $arr['parent_uri'] = $arr['uri'];
+ }
+
$r = q("SELECT `id` FROM mail WHERE `uri` = '%s' AND channel_id = %d LIMIT 1",
dbesc($arr['uri']),
intval($arr['channel_id'])