diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-15 18:07:58 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-15 18:07:58 -0800 |
commit | 5162459e4a77ccd1e4a4a68a2deae2a231947f62 (patch) | |
tree | 5a497883894ebf10f98d233209c50904bc829006 | |
parent | 39d914c9dfe87021351cb2aad9feedd381e791ec (diff) | |
download | volse-hubzilla-5162459e4a77ccd1e4a4a68a2deae2a231947f62.tar.gz volse-hubzilla-5162459e4a77ccd1e4a4a68a2deae2a231947f62.tar.bz2 volse-hubzilla-5162459e4a77ccd1e4a4a68a2deae2a231947f62.zip |
delivery report issue
-rw-r--r-- | include/zot.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/zot.php b/include/zot.php index 580220182..9208a6a99 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1121,12 +1121,13 @@ function zot_process_response($hub, $arr, $outq) { } foreach($x['delivery_report'] as $xx) { - call_hooks('dreport_process',$xx); + call_hooks('dreport_process',$xx); if(is_array($xx) && array_key_exists('message_id',$xx) && DReport::is_storable($xx)) { - q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s','%s','%s','%s','%s' ) ", + q("insert into dreport ( dreport_mid, dreport_site, dreport_recip, dreport_name, dreport_result, dreport_time, dreport_xchan ) values ( '%s', '%s','%s','%s','%s','%s','%s' ) ", dbesc($xx['message_id']), dbesc($xx['location']), dbesc($xx['recipient']), + dbesc($xx['name']), dbesc($xx['status']), dbesc(datetime_convert($xx['date'])), dbesc($xx['sender']) |