diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-09-26 15:08:46 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-09-26 15:08:46 +0000 |
| commit | 201ccf27b00419bb2cf5e8fe3a82f81f92f34979 (patch) | |
| tree | c18a844533f3c7e1b520de7e8080e5450d7c1217 | |
| parent | a79a2e4fcd7e2a747f229a6812e3ce737e25ce32 (diff) | |
| download | webtrees-201ccf27b00419bb2cf5e8fe3a82f81f92f34979.tar.gz webtrees-201ccf27b00419bb2cf5e8fe3a82f81f92f34979.tar.bz2 webtrees-201ccf27b00419bb2cf5e8fe3a82f81f92f34979.zip | |
Fix: HTML validation (all IMG tags must have an ALT string, even if it is empty)
| -rw-r--r-- | themes/webtrees/header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/webtrees/header.php b/themes/webtrees/header.php index 96da53e7b0..bb46231587 100644 --- a/themes/webtrees/header.php +++ b/themes/webtrees/header.php @@ -137,7 +137,7 @@ if ($view!='simple') { '</table>'; echo '<div>', - '<img src="', $WT_IMAGES['hline'], '" width="100%" height="3" />', + '<img src="', $WT_IMAGES['hline'], '" width="100%" height="3" alt="" />', '<table id="topMenu" width="100%">', '<tr>'; $menu=MenuBar::getGedcomMenu(); @@ -180,7 +180,7 @@ if ($view!='simple') { } echo '</tr>', '</table>', - '<img align="middle" src="', $WT_IMAGES['hline'], '" width="100%" height="3" />', + '<img align="middle" src="', $WT_IMAGES['hline'], '" width="100%" height="3" alt="" />', '</div>', '</div>', // end header section --> |
