Revert "fix the query of last pullrequest"

This reverts commit bda9a833ba.
This commit is contained in:
Mario Vavti 2017-04-24 09:05:33 +02:00
parent bda9a833ba
commit 42d139ee82

View File

@ -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 ) "
);