Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Sominemo committed Jan 8, 2025
1 parent a12e5e7 commit b0a17fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
<div class="item" role="row">
<md-icon aria-hidden="true"><?= $item["icon"] ?></md-icon>
<div class="content">
<div class="title" role="columnheader"><?= $cur_item["name"] ?> <span class="info"><?= $cur_item["hint"] ?></span></div>
<div class="title" role="columnheader"><?= $cur_item["name"] ?> <span class="info"><?= isset($cur_item["hint"]) ? $cur_item["hint"] : '' ?></span></div>
<div class="data" role="cell"><?= $cur_item["text"] ?></div>
<?php if (isset($cur_item["text_premium"])) { ?>
<div class="data premium" role="cell" title="<?=__("for_premium_users", UCOMP) ?>"><?= $cur_item["text_premium"] ?></div>
Expand Down

0 comments on commit b0a17fe

Please sign in to comment.