aboutsummaryrefslogtreecommitdiffstats
path: root/include/notifier.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-01-28 19:24:36 -0800
committerfriendica <info@friendica.com>2013-01-28 19:24:36 -0800
commit95415bff69a6dba17d9aa3ff02707c94872e75e4 (patch)
tree8e48d4fc1a9179eaf52383a0ce701a48e3b26ffc /include/notifier.php
parent89c6fc939d9672df0ddb0aa5ba880d5abca689b7 (diff)
downloadvolse-hubzilla-95415bff69a6dba17d9aa3ff02707c94872e75e4.tar.gz
volse-hubzilla-95415bff69a6dba17d9aa3ff02707c94872e75e4.tar.bz2
volse-hubzilla-95415bff69a6dba17d9aa3ff02707c94872e75e4.zip
delete item should now mostly work
Diffstat (limited to 'include/notifier.php')
-rw-r--r--include/notifier.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php
index dddf0aade..b22f77d91 100644
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -204,7 +204,11 @@ function notifier_run($argv, $argc){
$r = fetch_post_tags($r);
$target_item = $r[0];
-
+
+ if($target_item['item_restrict'] & ITEM_DELETED)
+ logger('notifier: target item ITEM_DELETED', LOGGER_DEBUG);
+
+
$s = q("select * from channel where channel_id = %d limit 1",
intval($target_item['uid'])
);