aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-04-24 09:05:33 +0200
committerMario Vavti <mario@mariovavti.com>2017-04-24 09:05:33 +0200
commit42d139ee82f9d442138b9f99e71485d18a86f52d (patch)
tree37c213a0cd36162f03b7f510970ed43f4cd6fcbc /Zotlabs
parentbda9a833ba2511a36a569dd03991130e775c5ca7 (diff)
downloadvolse-hubzilla-42d139ee82f9d442138b9f99e71485d18a86f52d.tar.gz
volse-hubzilla-42d139ee82f9d442138b9f99e71485d18a86f52d.tar.bz2
volse-hubzilla-42d139ee82f9d442138b9f99e71485d18a86f52d.zip
Revert "fix the query of last pullrequest"
This reverts commit bda9a833ba2511a36a569dd03991130e775c5ca7.
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Notifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php
index 3e2f5fdcc..3afe1a5dc 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 = null ) "
+ and hubloc_error = 0 and hubloc_deleted = 0 and ( site_dead = 0 OR site_dead is null ) "
);