diff options
author | friendica <info@friendica.com> | 2013-01-24 16:44:10 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-01-24 16:44:10 -0800 |
commit | cb5a20ba2cbad131267542ff55b394a9763b4c2c (patch) | |
tree | 4e4fd9e766b9c0acd04b9a81d7d4b244d66ad4b8 /include/notifier.php | |
parent | 4f7f547190f5ec2557739aad6b2c09e3f45cdc76 (diff) | |
download | volse-hubzilla-cb5a20ba2cbad131267542ff55b394a9763b4c2c.tar.gz volse-hubzilla-cb5a20ba2cbad131267542ff55b394a9763b4c2c.tar.bz2 volse-hubzilla-cb5a20ba2cbad131267542ff55b394a9763b4c2c.zip |
uncomplicate item deletion and fixup all the other linked tables
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/notifier.php b/include/notifier.php index 74da8f2f8..dddf0aade 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -240,9 +240,10 @@ function notifier_run($argv, $argc){ // $cmd === 'relay' indicates the owner is sending it to the original recipients // don't allow the item in the relay command to relay to owner under any circumstances, it will loop - logger('notifier: relay_to_owner: ' . (($relay_to_owner) ? 'true' : 'false')); - logger('notifier: top_level_post: ' . (($top_level_post) ? 'true' : 'false')); - logger('notifier: target_item_flags: ' . $target_item['item_flags'] . ' ' . (($target_item['item_flags'] & ITEM_ORIGIN ) ? 'true' : 'false')); + + logger('notifier: relay_to_owner: ' . (($relay_to_owner) ? 'true' : 'false'), LOGGER_DATA); + logger('notifier: top_level_post: ' . (($top_level_post) ? 'true' : 'false'), LOGGER_DATA); + logger('notifier: target_item_flags: ' . $target_item['item_flags'] . ' ' . (($target_item['item_flags'] & ITEM_ORIGIN ) ? 'true' : 'false'), LOGGER_DATA); // tag_deliver'd post which needs to be sent back to the original author |