re-arrange study group menus

This commit is contained in:
2014-02-04 09:13:31 +11:00
parent 057515688c
commit 2cb87c2863
3 changed files with 38 additions and 11 deletions

View File

@@ -39,7 +39,7 @@ function booking_report_summary() {
$rows = array();
$state_header = array('State', 'Count');
$state_rows = array();
$ecclesia_heaeder = array('State','Ecclesia', 'Count');
$ecclesia_header = array('State','Ecclesia', 'Count');
$ecclesia_rows = array();
//do some analysis about the people booked in
@@ -147,7 +147,7 @@ function booking_report_summary() {
$output .= t("<h3>Bookings by state</h3>");
$output .= theme('table', array('header' => $state_header, 'rows' => $state_rows, 'attributes' => $stats_attributes));
$output .= t("<h3>Bookings by ecclesia</h3>");
$output .= theme('table', array('header' => $ecclesia_heaeder, 'rows' => $ecclesia_rows, 'attributes' => $stats_attributes));
$output .= theme('table', array('header' => $ecclesia_header, 'rows' => $ecclesia_rows, 'attributes' => $stats_attributes));
$output .= t("<h3>Summary of attendees for !event.</h3>", array('!event' => $event->booking_eventname));
$output .= theme('table', array('header' => $header, 'rows' => $rows, 'attributes' => array('id' => 'sort-table')));