mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-06 13:09:08 -04:00
13 lines
341 B
PHP
13 lines
341 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="g-notification-detail">
|
|
<ul>
|
|
<?php foreach ($subscriptions as $subscription): ?>
|
|
<li id="g-watch-<?= $subscription->id ?>">
|
|
<a href="<?= $subscription->url ?>">
|
|
<?= html::purify($subscription->title) ?>
|
|
</a>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</div>
|