diff --git a/booking.studygroup_leaders.inc b/booking.studygroup_leaders.inc index 6194b8f..deec0c9 100644 --- a/booking.studygroup_leaders.inc +++ b/booking.studygroup_leaders.inc @@ -108,7 +108,7 @@ function _booking_studygroups_retrieve_eligible_people() { FROM ( SELECT p.nid, p.booking_firstname, p.booking_lastname, p.booking_state, p.booking_country, p.booking_readinggroup, pay.booking_payment_date, p.booking_status, p.booking_gender, p.booking_dob FROM {booking_person} p, {booking_payment} pay - WHERE booking_eventid = :eid and p.nid = pay.booking_person_nid and ( booking_status = 2 or booking_status = 4) + WHERE p.booking_eventid = :eid and p.nid = pay.booking_person_nid and ( p.booking_status = 2 or p.booking_status = 4) LIMIT 100 ) AS booking WHERE booking_gender = \'M\' diff --git a/booking.studygroups_report.inc b/booking.studygroups_report.inc index c1cddd0..ddac8e4 100644 --- a/booking.studygroups_report.inc +++ b/booking.studygroups_report.inc @@ -164,7 +164,8 @@ function booking_studygroups_leadhelp_view_summary() { } //end iterate person list //output everything - $output .= t("

!event Study Group Leaders and Helpers

", array('!event' => $event->booking_eventname)); + $output .= t("

!event Study Group Leaders and Helpers

", array('!event' => $event->booking_eventname)); + $output .= t("

This page lists all males that are either booked in or on the waiting list.

"); $output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => $attributes)); return $output;