diff options
author | Christian Schneider | 2007-02-15 01:47:00 +0000 |
---|---|---|
committer | Christian Schneider | 2007-02-15 01:47:00 +0000 |
commit | f857093ca98c784c01064f30b5ab08e68d98a868 (patch) | |
tree | 834dca85d2fa0bf9f50e3c8062b4223b441e2aab /html.class | |
parent | d356adc84daa5c8648a9f04bca60557789067026 (diff) | |
download | itools-f857093ca98c784c01064f30b5ab08e68d98a868.tar.gz itools-f857093ca98c784c01064f30b5ab08e68d98a868.tar.bz2 itools-f857093ca98c784c01064f30b5ab08e68d98a868.zip |
Added empty alt tag to make validator happy
Diffstat (limited to 'html.class')
-rw-r--r-- | html.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -254,7 +254,7 @@ function sanitize($html) { # Image tags, keeps only src attribute list($head, $src, $tail) = $tag; - $result .= it_html::sanitize($head) . "<img src=\"$src\" />" . it_html::sanitize($tail); + $result .= it_html::sanitize($head) . "<img src=\"$src\" alt=\"\" />" . it_html::sanitize($tail); } else if ($tag = it::match("(.*)<(br)[^>]*>(.*)", $html)) { |