Skip to content

Commit

Permalink
quick patch fix bookmark link bug in home view
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-peugnet committed Sep 26, 2024
1 parent f33d59f commit 8b46f5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/view/templates/homebookmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<tr>
<td>
<a
href="<?= $this->url("home", $bookmark->params(), $bookmark->query()) ?>&display=<?= $display ?>"
href="<?= $this->url("home", [], $bookmark->query()) ?>&display=<?= $display ?>"
data-current="<?= isset($queryaddress) && $bookmark->query() === $queryaddress ? '1' : '0' ?>"
class="bookmark"
title="<?= $bookmark->description() ?>"
Expand Down Expand Up @@ -43,7 +43,7 @@ class="bookmark"
<tr>
<td>
<a
href="<?= $this->url("home", $bookmark->params(), $bookmark->query()) ?>&display=<?= $display ?>"
href="<?= $this->url("home", [], $bookmark->query()) ?>&display=<?= $display ?>"
data-current="<?= isset($queryaddress) && $bookmark->query() === $queryaddress ? '1' : '0' ?>"
class="bookmark"
title="<?= $bookmark->description() ?>"
Expand Down

0 comments on commit 8b46f5a

Please sign in to comment.