diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-10-09 18:17:37 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-10-09 18:17:37 +0200 |
commit | 45c0091d3d5ce1aae1f4915dfd4c15865a011fe1 (patch) | |
tree | 8a9c4dd92ca86a3ee0fec353de9b80f49aef3a2a /Zotlabs/Module/Item.php | |
parent | 75184355d02007593d978a13b7e57514e6b08f63 (diff) | |
download | volse-hubzilla-45c0091d3d5ce1aae1f4915dfd4c15865a011fe1.tar.gz volse-hubzilla-45c0091d3d5ce1aae1f4915dfd4c15865a011fe1.tar.bz2 volse-hubzilla-45c0091d3d5ce1aae1f4915dfd4c15865a011fe1.zip |
more work on porting containers from streams
Diffstat (limited to 'Zotlabs/Module/Item.php')
-rw-r--r-- | Zotlabs/Module/Item.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 47358aebd..0b50b9b55 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1302,6 +1302,11 @@ class Item extends Controller { $post = item_store($datarray, $execflag); + hz_syslog('Item: ' . print_r($post['item_id'], true)); + hz_syslog('Item mid: ' . print_r($post['item']['mid'], true)); + hz_syslog('Item appr: ' . print_r($post['approval_id'], true)); + hz_syslog('Item appr mid: ' . print_r($post['approval']['mid'], true)); + if ($post['success']) { $this->add_listeners($datarray); } |