fix another typo

This commit is contained in:
2017-06-29 14:41:34 +10:00
parent b14edc70a2
commit 22c07cc832

View File

@@ -144,7 +144,7 @@ function booking_earlyaccess_csv_report() {
//get a list of all the early access codes for this event //get a list of all the early access codes for this event
$codelist_query = db_select('booking_regn_earlyaccess_codes', 'c'); $codelist_query = db_select('booking_regn_earlyaccess_codes', 'c');
$codelist_query->condition('c.booking_eventid', $event->eid, '=') $codelist_query->condition('c.booking_eventid', $event->eid, '=')
->fields('p') ->fields('c')
->orderBy('cid'); ->orderBy('cid');
$result = $codelist_query->execute(); $result = $codelist_query->execute();