diff options
author | friendica <info@friendica.com> | 2015-01-31 00:50:20 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-31 00:50:20 -0800 |
commit | e6a5f7800390e5091743d6a97c6fd8f54c5d1530 (patch) | |
tree | 20c49c7d11b411b91530ef43374a208274ebbb57 /include/notifier.php | |
parent | 4a243b63f7019a1e56ecf03b138cd7fc396236c2 (diff) | |
parent | 3e5226adc70838c784a0b208de25fffde37a6679 (diff) | |
download | volse-hubzilla-e6a5f7800390e5091743d6a97c6fd8f54c5d1530.tar.gz volse-hubzilla-e6a5f7800390e5091743d6a97c6fd8f54c5d1530.tar.bz2 volse-hubzilla-e6a5f7800390e5091743d6a97c6fd8f54c5d1530.zip |
Merge branch 'master' into tres
Conflicts:
include/zot.php
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/notifier.php b/include/notifier.php index 79be25621..303e3485b 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -59,6 +59,7 @@ require_once('include/html2plain.php'); * relay item_id (item was relayed to owner, we will deliver it as owner) * location channel_id * request channel_id xchan_hash message_id + * rating xlink_id * */ @@ -294,6 +295,15 @@ function notifier_run($argv, $argc){ $private = false; $packet_type = 'purge'; } + elseif($cmd === 'rating') { + $r = q("select * from xlink where xlink_id = %d and xlink_static = 1 limit 1", + intval($item_id) + ); + if($r) { + logger('rating message: ' . print_r($r[0],true)); + return; + } + } else { // Normal items |