diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-11-15 18:12:53 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-11-15 18:12:53 -0800 |
commit | 6ad35e3d843bbc0483e21ed6f31c8942513290b6 (patch) | |
tree | d8c5d0c018bc485081d144135542ebbf7f94011b /include | |
parent | 3d80073a0e1e0847cad2e2fbe86aa66a1fbec983 (diff) | |
download | volse-hubzilla-6ad35e3d843bbc0483e21ed6f31c8942513290b6.tar.gz volse-hubzilla-6ad35e3d843bbc0483e21ed6f31c8942513290b6.tar.bz2 volse-hubzilla-6ad35e3d843bbc0483e21ed6f31c8942513290b6.zip |
issue with dead hub detection
Diffstat (limited to 'include')
-rw-r--r-- | include/notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php index 34a527e15..b7830285a 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -101,7 +101,7 @@ function notifier_run($argv, $argc){ $dead_hubs = array(); $dh = q("select site_url from site where site_dead = 1"); - if(dh) { + if($dh) { foreach($dh as $dead) { $dead_hubs[] = $dead['site_url']; } |