diff options
author | Friendika <info@friendika.com> | 2011-09-04 00:48:45 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-04 00:48:45 -0700 |
commit | 9ff1a3444e9029c94541a7c84f0ed5ba764adef3 (patch) | |
tree | 67e131f721979a80268e947886514d8fbc9c1641 /include/notifier.php | |
parent | 59a6a04e26bf6baec4b7ad62419e9d335db249df (diff) | |
download | volse-hubzilla-9ff1a3444e9029c94541a7c84f0ed5ba764adef3.tar.gz volse-hubzilla-9ff1a3444e9029c94541a7c84f0ed5ba764adef3.tar.bz2 volse-hubzilla-9ff1a3444e9029c94541a7c84f0ed5ba764adef3.zip |
add timezone convert module, several other minor or in progress fixes
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/notifier.php b/include/notifier.php index 8d2aa961c..0bb82b7bf 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -129,6 +129,7 @@ function notifier_run($argv, $argc){ logger('notifier: top level post'); $top_level = true; } + } $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`, @@ -144,6 +145,8 @@ function notifier_run($argv, $argc){ $owner = $r[0]; + $walltowall = ((($top_level) && ($owner['id'] != $items[0]['contact-id'])) ? true : false); + $hub = get_config('system','huburl'); // If this is a public conversation, notify the feed hub |