diff options
author | friendica <info@friendica.com> | 2015-02-02 20:13:07 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-02 20:13:07 -0800 |
commit | 1807db6cb0cc297aff32750b371a4e2e6539ad31 (patch) | |
tree | d8045e14bfa0ddf0760a8ac90a284fdd9eb4ca10 /include/notifier.php | |
parent | fa710106e5f97744e43a61a7e9ef5a1b993261ee (diff) | |
download | volse-hubzilla-1807db6cb0cc297aff32750b371a4e2e6539ad31.tar.gz volse-hubzilla-1807db6cb0cc297aff32750b371a4e2e6539ad31.tar.bz2 volse-hubzilla-1807db6cb0cc297aff32750b371a4e2e6539ad31.zip |
send rating information to directories
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/notifier.php b/include/notifier.php index edb2f1946..fe6ac33c0 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -297,15 +297,6 @@ 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 @@ -483,11 +474,6 @@ function notifier_run($argv, $argc){ // Now we have collected recipients (except for external mentions, FIXME) // Let's reduce this to a set of hubs. - - // for public posts always include our own hub -// this shouldn't be needed any more. collect_recipients should take care of it. -// $sql_extra = (($private) ? "" : " or hubloc_url = '" . dbesc(z_root()) . "' "); - logger('notifier: hub choice: ' . intval($relay_to_owner) . ' ' . intval($private) . ' ' . $cmd, LOGGER_DEBUG); if($relay_to_owner && (! $private) && ($cmd !== 'relay')) { |