diff options
author | friendica <info@friendica.com> | 2015-02-25 17:24:09 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-25 17:24:09 -0800 |
commit | ac3384e661115fac5d771f62fc3eaa1587e5326f (patch) | |
tree | f7c3daed66b42142079840f61d126790836b0c42 /include | |
parent | b9e485be54317b68c994c5ffa3b2ffe21f767775 (diff) | |
download | volse-hubzilla-ac3384e661115fac5d771f62fc3eaa1587e5326f.tar.gz volse-hubzilla-ac3384e661115fac5d771f62fc3eaa1587e5326f.tar.bz2 volse-hubzilla-ac3384e661115fac5d771f62fc3eaa1587e5326f.zip |
syntax - missing arg
Diffstat (limited to 'include')
-rw-r--r-- | include/notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php index 22adc78a3..36a52b209 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -375,7 +375,7 @@ function notifier_run($argv, $argc){ // flag on comments for an extended period. So we'll also call comment_local_origin() which looks at // the hostname in the message_id and provides a second (fallback) opinion. - $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN) && comment_local_origin()) + $relay_to_owner = (((! $top_level_post) && ($target_item['item_flags'] & ITEM_ORIGIN) && comment_local_origin($target_item)) ? true : false ); |