From 22c07cc8322c348f2c6066420e13c3b3c1a343cd Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 29 Jun 2017 14:41:34 +1000 Subject: [PATCH] fix another typo --- booking.earlyaccess_admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booking.earlyaccess_admin.inc b/booking.earlyaccess_admin.inc index 0767d9c..c8d5dda 100644 --- a/booking.earlyaccess_admin.inc +++ b/booking.earlyaccess_admin.inc @@ -144,7 +144,7 @@ function booking_earlyaccess_csv_report() { //get a list of all the early access codes for this event $codelist_query = db_select('booking_regn_earlyaccess_codes', 'c'); $codelist_query->condition('c.booking_eventid', $event->eid, '=') - ->fields('p') + ->fields('c') ->orderBy('cid'); $result = $codelist_query->execute();