diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-11-29 19:03:48 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-11-29 19:03:48 +0100 |
commit | 710b0068979018156db417a14e4273f51fc96e19 (patch) | |
tree | 56e65e3fe3bf6c52556566679d77cc787912dcb2 | |
parent | 51b97f3808b8ad35c13307165f4f0ba005b2c059 (diff) | |
download | generate_gallery-710b0068979018156db417a14e4273f51fc96e19.tar.gz generate_gallery-710b0068979018156db417a14e4273f51fc96e19.tar.xz |
add missing s to shutter speed in image title
Signed-off-by: Florian Pritz <bluewind@xssn.at>
-rwxr-xr-x | generate_gallery.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generate_gallery.pl b/generate_gallery.pl index d99720f..931581d 100755 --- a/generate_gallery.pl +++ b/generate_gallery.pl @@ -42,7 +42,7 @@ for my $dir (@ARGV) { } $html .= "<div class=\"thumbnail\">\n"; my $tags = ImageInfo($file, "Aperture", "ShutterSpeed", "FocalLength"); - $html .= "<a rel=\"images\" class=\"thumbnail\" title=\"".$tags->{ShutterSpeed}.", ".$tags->{FocalLength}." @ F ".$tags->{Aperture}."\" href=\"$file\">\n"; + $html .= "<a rel=\"images\" class=\"thumbnail\" title=\"".$tags->{ShutterSpeed}."s, ".$tags->{FocalLength}." @ F ".$tags->{Aperture}."\" href=\"$file\">\n"; $html .= "<img class=\"thumbnail\" alt=\"\" src=\"thumbs/$file\" />\n"; $html .= "</a>\n</div>\n"; } |