From fdf18de9a9354c97c5c0aecc0753b22ef40f8a0e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Barrois?= Date: Fri, 21 Oct 2011 01:41:54 +0200 Subject: [PATCH] Fix NL sending order. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Raphaël Barrois --- include/newsletter.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/newsletter.inc.php b/include/newsletter.inc.php index 17a4bf5..67bfc9c 100644 --- a/include/newsletter.inc.php +++ b/include/newsletter.inc.php @@ -1231,7 +1231,7 @@ class NLIssue $this->id); $ufc = new PFC_And($this->getRecipientsUFC(), new UFC_NLSubscribed($this->nl->id, $this->id), new UFC_HasValidEmail()); - $uf = new UserFilter($ufc, array(new UFO_IsAdmin(), new UFO_Uid())); + $uf = new UserFilter($ufc, array(new UFO_IsAdmin(true), new UFO_Uid())); $limit = new PlLimit(self::BATCH_SIZE); $global_sent = array(); -- 2.1.4