Remove useless &
This commit is contained in:
parent
e08625ceec
commit
8e59668b84
@ -28,11 +28,11 @@
|
|||||||
|
|
||||||
<span class="nav-middle">
|
<span class="nav-middle">
|
||||||
<?php if ($item_nav['previous'] && $item_nav['next']): ?>
|
<?php if ($item_nav['previous'] && $item_nav['next']): ?>
|
||||||
<a href="?action=default&#item-<?= urlencode($item_nav['next']['id']) ?>">Unread items</a>
|
<a href="?action=default#item-<?= urlencode($item_nav['next']['id']) ?>">Unread items</a>
|
||||||
<?php elseif ($item_nav['previous'] && ! $item_nav['next']): ?>
|
<?php elseif ($item_nav['previous'] && ! $item_nav['next']): ?>
|
||||||
<a href="?action=default&#item-<?= urlencode($item_nav['previous']['id']) ?>">Unread items</a>
|
<a href="?action=default#item-<?= urlencode($item_nav['previous']['id']) ?>">Unread items</a>
|
||||||
<?php elseif (! $item_nav['previous'] && $item_nav['next']): ?>
|
<?php elseif (! $item_nav['previous'] && $item_nav['next']): ?>
|
||||||
<a href="?action=default&#item-<?= urlencode($item_nav['next']['id']) ?>">Unread items</a>
|
<a href="?action=default#item-<?= urlencode($item_nav['next']['id']) ?>">Unread items</a>
|
||||||
<?php elseif (! $item_nav['previous'] && ! $item_nav['next']): ?>
|
<?php elseif (! $item_nav['previous'] && ! $item_nav['next']): ?>
|
||||||
<a href="?action=default">Unread items</a>
|
<a href="?action=default">Unread items</a>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
Loading…
Reference in New Issue
Block a user