From f868e02257d7488bceb27604f0f289b45705f566 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Wed, 4 May 2016 11:21:50 +1000 Subject: [PATCH] Fix dereference --- booking.reports.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booking.reports.inc b/booking.reports.inc index 1bf7975..4ea1989 100644 --- a/booking.reports.inc +++ b/booking.reports.inc @@ -765,7 +765,7 @@ function booking_csv_report() { //room location if ($key == 'booking_room_location_id') { //$output[] = _booking_room_location_lookup($value); - $output[] = $room_locations[$value]->booking_roomlocation_descrip; + $output[] = $room_locations[$value]['booking_roomlocation_descrip']; continue; }