diff --git a/booking.reports.inc b/booking.reports.inc index 6d82061..e7a9720 100644 --- a/booking.reports.inc +++ b/booking.reports.inc @@ -477,10 +477,10 @@ function booking_report_travel() { $this_row[] = t('!train', array('!train' => $person->booking_transport_from_morriset_reqd == 1 ? 'Yes' : 'No')); $this_row[] = t('!inflightnum', array('!transport' => $person->booking_flightnum_inbound)); $this_row[] = t('!inflighttime', array('!inflighttime' => - $person->booking_flight_datetime_inbound == 0 ? '' : format_date($person->booking_flight_datetime_inbound, 'custom', 'd/m/Y H:i')); + $person->booking_flight_datetime_inbound == 0 ? '' : format_date($person->booking_flight_datetime_inbound, 'custom', 'd/m/Y H:i'))); $this_row[] = t('!outflightnum', array('!outflightnum' => $person->booking_flightnum_outbound)); $this_row[] = t('!outflighttime', array('!outflighttime' => - $person->booking_flight_datetime_outbound == 0 ? '' : format_date($person->booking_flight_datetime_outbound, 'custom', 'd/m/Y H:i')); + $person->booking_flight_datetime_outbound == 0 ? '' : format_date($person->booking_flight_datetime_outbound, 'custom', 'd/m/Y H:i'))); $this_row[] = t('!beforeaccom', array('!beforeaccom' => $person->booking_accom_before_reqd == 1 ? 'Yes' : 'No')); $this_row[] = t('!afteraccom', array('!afteraccom' => $person->booking_accom_after_reqd == 1 ? 'Yes' : 'No')); }