Skip to content

Commit

Permalink
fix concat
Browse files Browse the repository at this point in the history
  • Loading branch information
dakur authored Jan 27, 2025
1 parent cfac67f commit 4ebdc4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -530,9 +530,9 @@ function hb_tags(array $tags, ?string $className)
{
foreach ($tags as $tag):
?>
<span class="<?php echo $className !== null ? $className + ' ' : ''; ?>eventTag">
<span class="<?php echo $className !== null ? $className . ' ' : ''; ?>eventTag">
<?php echo $tag ?>
</span>
<?php
endforeach;
}
}

0 comments on commit 4ebdc4d

Please sign in to comment.