diff --git a/booking.confirm.inc b/booking.confirm.inc index e3e3228..19ea888 100644 --- a/booking.confirm.inc +++ b/booking.confirm.inc @@ -33,7 +33,7 @@ function booking_confirm_page() { if ($person) { //load all the fields $node = node_load($person->nid); - watchdog('booking_debug', 'booking_confirm_page node:
@info', array('@info' => print_r( $node, true))); + //watchdog('booking_debug', 'booking_confirm_page node:
@info', array('@info' => print_r( $node, true))); //maximum length for invoice id is 127 characters $invoiceid = $person->nid . '_' . $node->booking_eventid . '_' . $node->booking_lastname . '-' . $node->booking_firstname; diff --git a/booking.regn_node.inc b/booking.regn_node.inc index 380730a..e4c62a8 100644 --- a/booking.regn_node.inc +++ b/booking.regn_node.inc @@ -152,14 +152,14 @@ function booking_load_query($node_ids = NULL, $fetchAssoc = FALSE) if (! is_null($node_ids)) { $nid_string = implode(',', array_map('_booking_quote_string', $node_ids)); $query_string = "SELECT * FROM {booking_person_view} WHERE nid IN ( " . $nid_string . " )"; - watchdog('booking_debug', "
Loading node query:\n@info", array('@info' => print_r($query_string, true))); + //watchdog('booking_debug', "
Loading node query:\n@info", array('@info' => print_r($query_string, true))); $result = db_query($query_string)->fetchAllAssoc('nid'); } else { $result = db_query("SELECT * FROM {booking_person_view}")->fetchAllAssoc('nid'); } - watchdog('booking', "
Loading node query output:\n@info", array('@info' => print_r( $result, true))); + //watchdog('booking', "
Loading node query output:\n@info", array('@info' => print_r( $result, true))); return $result; } @@ -823,7 +823,7 @@ function booking_view($node, $view_mode) { $rows = array(); $travel_rows = array(); - watchdog('booking_debug', 'booking view node:
@info', array('@info' => print_r( $node, true))); + //watchdog('booking_debug', 'booking view node:
@info', array('@info' => print_r( $node, true))); //calculate the price owed by this person //if (_booking_is_earlybird() == true || _booking_amount_owing($node->nid) == 0)