summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/views/admin_block_photo_stream.html.php16
1 files changed, 10 insertions, 6 deletions
diff --git a/core/views/admin_block_photo_stream.html.php b/core/views/admin_block_photo_stream.html.php
index f7889a9c..e8a4d933 100644
--- a/core/views/admin_block_photo_stream.html.php
+++ b/core/views/admin_block_photo_stream.html.php
@@ -1,10 +1,14 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
-<p>
- Recent photos added to your Gallery
-</p>
+<ul>
<? foreach ($photos as $photo): ?>
-<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
- <img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
+ <li class="gItem gPhoto">
+ <a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
+ <img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
src="<?= $photo->thumb_url() ?>" alt="<?= $photo->title ?>" />
-</a>
+ </a>
+ </li>
<? endforeach ?>
+</ul>
+<p>
+ <?= t("Recent photos added to your Gallery") ?>
+</p>