diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-08-26 17:05:06 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-08-26 17:05:06 +0200 |
commit | ea1438404b04430c78f4a115a97a0be887a9a8a0 (patch) | |
tree | 569399d5ffd175b829dbc21834068df9655a9ca3 | |
parent | c066e754db0cb496d3f1d065b31377e6d4ac9a4a (diff) | |
download | generate_gallery-ea1438404b04430c78f4a115a97a0be887a9a8a0.tar.gz generate_gallery-ea1438404b04430c78f4a115a97a0be887a9a8a0.tar.xz |
Fix missing space between attributes
Signed-off-by: Florian Pritz <bluewind@xinu.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 518ee3e..978857d 100755 --- a/generate_gallery.pl +++ b/generate_gallery.pl @@ -76,7 +76,7 @@ for my $dir (@ARGV) { $html .= "<div class=\"thumbnail\">\n"; $html .= "<a rel=\"images\" class=\"thumbnail\" "; - $html .= "title=\"$description\"" if $description; + $html .= "title=\"$description\" " if $description; $html .= "href=\"$file\">\n"; $html .= "<img class=\"thumbnail\" alt=\"\" src=\"thumbs/$file\" />\n"; $html .= "</a>\n</div>\n"; |