Files
gallery3/modules/gallery/views/admin_block_news.html.php
Johan Cwiklinski 6746792bdf Drop short_tags
2018-05-19 17:01:37 +02:00

12 lines
300 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<?php foreach ($feed as $entry): ?>
<li>
<a href="<?= $entry["link"] ?>"><?= $entry["title"] ?></a>
<p>
<?= text::limit_words(strip_tags($entry["description"]), 25); ?>
</p>
</li>
<?php endforeach ?>
</ul>