Skip to content

Commit

Permalink
TMS-1059: CR fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eebbi committed Nov 18, 2024
1 parent 885a4ba commit ddcb944
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Eventz.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,11 @@ public static function normalize_event( $event ) : array {
foreach ( $event->links as $event_link ) {
// Assign links to their own variables
if ( $event_link->name === 'PurchaseTicket' ) {
$event_link->name = \__( 'Purchase tickets', 'tms-theme-base' );
$event_link->name = \__( 'Purchase tickets', 'tms-theme-base' );
$event_link_purchase_ticket = $event_link;
}
else if ( $event_link->name === 'SignUp' ) {
$event_link->name = \__( 'Sign up', 'tms-theme-base' );
$event_link->name = \__( 'Sign up', 'tms-theme-base' );
$event_link_sign_up = $event_link;
}
else {
Expand Down

0 comments on commit ddcb944

Please sign in to comment.