diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-09 22:45:52 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-09 22:45:52 -0700 |
commit | 568690186961d2946543c8320faf5575758acfca (patch) | |
tree | 8b7d7a686352befb2918290ad0bc606fa9a1230b /Zotlabs/Daemon/Notifier.php | |
parent | 6531cbd1d286738acb9448b141bf4d7d5f97ccf3 (diff) | |
download | volse-hubzilla-568690186961d2946543c8320faf5575758acfca.tar.gz volse-hubzilla-568690186961d2946543c8320faf5575758acfca.tar.bz2 volse-hubzilla-568690186961d2946543c8320faf5575758acfca.zip |
some doco fixes and other real minor stuff to improve logreading ability
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index f64e6748c..6fae69fcd 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -532,14 +532,14 @@ class Notifier { if($hub['hubloc_network'] == 'zot') { if(! in_array($hub['hubloc_sitekey'],$keys)) { - $hublist[] = $hub['hubloc_host']; + $hublist[] = $hub['hubloc_host'] . ' ' . $hub['hubloc_network']; $dhubs[] = $hub; $keys[] = $hub['hubloc_sitekey']; } } else { if(! in_array($hub['hubloc_url'],$urls)) { - $hublist[] = $hub['hubloc_host']; + $hublist[] = $hub['hubloc_host'] . ' ' . $hub['hubloc_network']; $dhubs[] = $hub; $urls[] = $hub['hubloc_url']; } |