Remove useless &

This commit is contained in:
Frederic Guillot 2013-04-01 21:31:24 -04:00
parent e08625ceec
commit 8e59668b84
1 changed files with 3 additions and 3 deletions

View File

@ -28,11 +28,11 @@
<span class="nav-middle">
<?php if ($item_nav['previous'] && $item_nav['next']): ?>
<a href="?action=default&amp;#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']): ?>
<a href="?action=default&amp;#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']): ?>
<a href="?action=default&amp;#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']): ?>
<a href="?action=default">Unread items</a>
<?php endif ?>