diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-04-23 17:22:28 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-04-23 17:22:28 +0200 |
commit | bda9a833ba2511a36a569dd03991130e775c5ca7 (patch) | |
tree | 93ca9a54928fd1e65bddfb6e73561d1f069a8d76 /Zotlabs/Daemon | |
parent | ac12f923eacd3d9c268c30633b5f653a4d680799 (diff) | |
download | volse-hubzilla-bda9a833ba2511a36a569dd03991130e775c5ca7.tar.gz volse-hubzilla-bda9a833ba2511a36a569dd03991130e775c5ca7.tar.bz2 volse-hubzilla-bda9a833ba2511a36a569dd03991130e775c5ca7.zip |
fix the query of last pullrequest
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 3afe1a5dc..3e2f5fdcc 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -480,7 +480,7 @@ class Notifier { // Let's reduce this to a set of hubs; checking that the site is not dead. $r = q("select hubloc.*, site.site_crypto from hubloc left join site on site_url = hubloc_url where hubloc_hash in (" . implode(',',$recipients) . ") - and hubloc_error = 0 and hubloc_deleted = 0 and ( site_dead = 0 OR site_dead is null ) " + and hubloc_error = 0 and hubloc_deleted = 0 and ( site_dead = 0 OR site_dead = null ) " ); |