From 51d3f692c72aeec08c3faf74d0b92baafcedb661 Mon Sep 17 00:00:00 2001 From: james Date: Fri, 18 Sep 2009 15:16:39 +0000 Subject: [PATCH] Fix committee query in communication module --- admin/communication.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/communication.inc.php b/admin/communication.inc.php index ac5ddc14..8a9bf3bf 100644 --- a/admin/communication.inc.php +++ b/admin/communication.inc.php @@ -1,7 +1,7 @@ array("name"=>"Committee members (all)","query"=> - "SELECT firstname, lastname, organization, email FROM users WHERE types LIKE '%committee%' AND deleted='no' AND year='{$config['FAIRYEAR']}' "), + "SELECT firstname, lastname, organization, email FROM users WHERE types LIKE '%committee%' AND deleted='no' GROUP BY uid"), /* The WHERE clause evaluates which rows to add to the GROUP BY, the HAVING clase evaluates which grouped rows show up. We