summaryrefslogtreecommitdiff
path: root/core/views
diff options
context:
space:
mode:
Diffstat (limited to 'core/views')
-rw-r--r--core/views/admin_block_photo_stream.html.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/views/admin_block_photo_stream.html.php b/core/views/admin_block_photo_stream.html.php
index 3255fb04..af8d8545 100644
--- a/core/views/admin_block_photo_stream.html.php
+++ b/core/views/admin_block_photo_stream.html.php
@@ -2,7 +2,8 @@
<p>
Recent photos added to your Gallery
</p>
-<img src="<?= $theme->url("images/photostream.png") ?>" alt="" />
-<p class="gWarning">
- Slider type of display. Show titles underneath or on hover. Draw a keyline around albums, or differentiate some how. Each will be linked to item view
-</p>
+<? foreach ($photos as $photo): ?>
+<a href="<?= url::site("photos/$photo->id") ?>">
+ <img <?= photo::img_dimensions($photo, 72) ?> src="<?= $photo->thumb_url() ?>" alt="" />
+</a>
+<? endforeach ?>