diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-11-13 14:52:52 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-11-13 14:52:56 +0100 |
commit | 5d46d39e4c420930cc36f76f3d1975c0a8ccf946 (patch) | |
tree | df8a2cd83cd61431de23b26bfdfd21948c1f9540 | |
parent | 62a940627d2b74d9a09306134120a6e3b2a61f92 (diff) |
Add alt tag to images
-rwxr-xr-x | include/gen-xhtml-thumbnails | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gen-xhtml-thumbnails b/include/gen-xhtml-thumbnails index c7e1d4f..0120ae1 100755 --- a/include/gen-xhtml-thumbnails +++ b/include/gen-xhtml-thumbnails @@ -64,7 +64,7 @@ foreach my $file (sort(@files)) { my $image = Image::Imlib2->load($file); my $thumb; - print $index "<a href=\"$file\"><img src=\".thumbs/$file\"/></a>\n"; + print $index "<a href=\"$file\"><img src=\".thumbs/$file\" alt=\"$file\" /></a>\n"; print_progress; $number++; |