From d8f4228a59bddd0a93c0b46308bef016ca1bf6cd Mon Sep 17 00:00:00 2001 From: james Date: Fri, 16 Mar 2012 17:32:28 +0000 Subject: [PATCH] Wow committee reports were pretty broken.. fixed them, and added a field for the users title on the committee --- admin/reports_committees.inc.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/admin/reports_committees.inc.php b/admin/reports_committees.inc.php index 104e3945..442a99f7 100644 --- a/admin/reports_committees.inc.php +++ b/admin/reports_committees.inc.php @@ -95,6 +95,12 @@ $report_committees_fields = array( 'width' => 2, 'table' => 'users.organization'), + 'title' => array( + 'name' => 'Committee Member -- Title on Committee', + 'header' => 'Title', + 'width' => 2, + 'table' => 'committees_link.title'), + 'firstaid' => array( 'name' => 'Committee Member -- First Aid Training', 'header' => 'F.Aid', @@ -135,9 +141,14 @@ $report_committees_fields = array( } */ $q = " FROM - users + users, + committees, + committees_link WHERE users.types LIKE '%committee%' + AND committees_link.committees_id=committees.id + AND committees_link.users_uid=users.uid + AND users.year=$year "; return $q;