diff options
author | Chad Kieffer <chad@2tbsp.com> | 2008-12-07 01:28:37 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2008-12-07 01:28:37 +0000 |
commit | 9bfeb413abce88d9f47a819dea24d8526ec45a80 (patch) | |
tree | 8c64a5369817878795bbec1e1a27fedb05368cad | |
parent | 2aa84796f3a7965c7094422412ad005c13c00bd3 (diff) |
Added title attribute.
-rw-r--r-- | modules/slideshow/helpers/slideshow_block.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/slideshow/helpers/slideshow_block.php b/modules/slideshow/helpers/slideshow_block.php index f38f98a5..4e0d5c20 100644 --- a/modules/slideshow/helpers/slideshow_block.php +++ b/modules/slideshow/helpers/slideshow_block.php @@ -24,7 +24,8 @@ class slideshow_block_Core { } private static function _piclens_link($theme) { - return "<a href=\"javascript:PicLensLite.start()\" id=\"gSlideshowLink\">" . + return "<a href=\"javascript:PicLensLite.start()\" id=\"gSlideshowLink\"" . + " title=\"" . _("View slideshow") . "\">" . "<img src=\"" . $theme->url("images/ico-view-slideshow.png") . "\" alt=\"" . _("View slideshow") . "\" /></a>"; } |