Skip to content

Commit

Permalink
Update mt-ticketing-settings.php
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Dec 26, 2023
1 parent 492096a commit a665ab8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mt-ticketing-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ function mt_ticketing_settings() {
$ticket_models = array( 'discrete', 'continuous', 'event' );
$tabs = '';
foreach ( $ticket_models as $model ) {
$tabs .= "<li><a href='#$model'>" . ucfirst( $model ) . '</a></li>';;
$tabs .= "<li><a href='#$model'>" . ucfirst( $model ) . '</a></li>';
}
?>
<div class='mt-tabs'>
Expand All @@ -249,7 +249,7 @@ function mt_ticketing_settings() {
foreach ( $ticket_models as $model ) {
$displayed = $options['defaults'][ $model ];
$multiple = ( isset( $displayed['multiple'] ) && 'true' === $displayed['multiple'] ) ? true : false;
$type = $displayed['sales_type'];
$type = $displayed['sales_type'];
if ( ! $type || 'tickets' === $type ) {
$is_tickets = true;
$is_registration = false;
Expand Down Expand Up @@ -288,7 +288,7 @@ function mt_ticketing_settings() {
</div>
<?php
}
?>
?>
</div>
</div>
</div>
Expand Down

0 comments on commit a665ab8

Please sign in to comment.