From d44e0d95928c964ddc9be91c20e741290899059e Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Sun, 26 Jun 2016 21:35:48 +1000 Subject: [PATCH] fix --- booking.reports.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')); }