diff --git a/modules/slideshow/helpers/slideshow_block.php b/modules/slideshow/helpers/slideshow_block.php
index 66417eb1..f38f98a5 100644
--- a/modules/slideshow/helpers/slideshow_block.php
+++ b/modules/slideshow/helpers/slideshow_block.php
@@ -23,19 +23,18 @@ class slideshow_block_Core {
"";
}
- private static function _piclens_link() {
- return "" .
- _("Slideshow") .
- "";
+ private static function _piclens_link($theme) {
+ return "" .
+ "url("images/ico-view-slideshow.png") . "\" alt=\"" .
+ _("View slideshow") . "\" />";
}
public static function album_top($theme) {
- return self::_piclens_link();
+ return self::_piclens_link($theme);
}
public static function photo_top($theme) {
- return self::_piclens_link();
+ return self::_piclens_link($theme);
}
public static function tag_top($theme) {
diff --git a/themes/default/views/album.html.php b/themes/default/views/album.html.php
index 8cc11b3e..4f8bf23e 100644
--- a/themes/default/views/album.html.php
+++ b/themes/default/views/album.html.php
@@ -1,10 +1,9 @@
defined("SYSPATH") or die("No direct script access."); ?>