Skip to content

Commit

Permalink
Fix purchase date error
Browse files Browse the repository at this point in the history
  • Loading branch information
renintw committed Oct 28, 2024
1 parent 794557f commit c3b65b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public_html/wp-content/plugins/camptix/camptix.php
Original file line number Diff line number Diff line change
Expand Up @@ -8619,7 +8619,7 @@ function log_ticket_purchase_on_user_profile( $attendee ) {
$ticket_id = intval( get_post_meta( $attendee->ID, 'tix_ticket_id', true ) );
$ticket = get_post( $ticket_id );
$ticket_type = $ticket->post_title;
$purchase_date = esc_html( mysql2date( get_option( 'date_format' ), $attendee->post_date ) );
$purchase_date = $attendee->post_date;
$edit_token = get_post_meta( $attendee->ID, 'tix_edit_token', true );
$edit_link = $this->get_edit_attendee_link( $attendee->ID, $edit_token );
$total_price = $this->append_currency( (float) get_post_meta( $attendee->ID, 'tix_order_total', true ), false );
Expand Down

0 comments on commit c3b65b2

Please sign in to comment.