update room number field to be an integer
This commit is contained in:
@@ -279,7 +279,8 @@ function booking_report_summary() {
|
||||
));
|
||||
$output .= t("<h3>Ages</h3>");
|
||||
$output .= t("<p>The combined average age at the start of the week will be !average.<br />The male average age will be !maleaverage.<br />The female average age will be !femaleaverage.</p>",
|
||||
array('!average' => _booking_avg_age($dob_total, $male_count + $female_count, $event->booking_event_start), '!maleaverage' => _booking_avg_age($male_dob_total, $male_count, $event->booking_event_start),
|
||||
array('!average' => _booking_avg_age($dob_total, $male_count + $female_count, $event->booking_event_start),
|
||||
'!maleaverage' => _booking_avg_age($male_dob_total, $male_count, $event->booking_event_start),
|
||||
'!femaleaverage' => _booking_avg_age($female_dob_total, $female_count, $event->booking_event_start)
|
||||
));
|
||||
$output .= t("<h3>Finances</h3>");
|
||||
|
Reference in New Issue
Block a user