Skip to content

Commit

Permalink
fix php 8 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
denniserdmann committed Apr 28, 2023
1 parent 888986c commit d8b2f5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<?php if($this->hasItems): ?>
<ul class="onepage_navigation__list">
<?php foreach ($this->navigation as $nav): ?>
<li<?php if($nav->css): ?> class="<?= $nav->css;?>"<?php endif; ?>>
<li<?php if(!empty($nav->css)): ?> class="<?= $nav->css;?>"<?php endif; ?>>
<a href="<?= $nav->onepage_jump; ?>" data-onepagelink="<?= $nav->navigation_jumpTo ?>" title="<?= $nav->title ?>">
<?= $nav->title ?>
</a>
Expand Down

0 comments on commit d8b2f5e

Please sign in to comment.