Remove the image used in the OPDS catalog in the HTML catalog. Reported by Thomas Severinsen.

This commit is contained in:
Sébastien Lucas 2013-04-24 15:38:39 +02:00
parent e6560be28c
commit 0d43027f75

View file

@ -226,6 +226,7 @@
<div class="entryContent"><?php echo htmlspecialchars ($entry->content) ?></div> <div class="entryContent"><?php echo htmlspecialchars ($entry->content) ?></div>
<?php <?php
foreach ($entry->linkArray as $link) { foreach ($entry->linkArray as $link) {
if ($link->type != Link::OPDS_NAVIGATION_TYPE) { continue; }
?> ?>
<a href="<?php echo $link->hrefXhtml () ?>" class="navigation">nav</a> <a href="<?php echo $link->hrefXhtml () ?>" class="navigation">nav</a>
<?php <?php