Fixed a few XHTML 1.0 related bugs

This commit is contained in:
Wouter van Oijen 2005-09-01 12:39:43 +00:00
parent 288e42f6d2
commit ad6b484f0e
13 changed files with 20 additions and 20 deletions

View file

@ -21,7 +21,7 @@ sub process {
@param = WebGUI::Macro::getParams($_[0]);
$width = $param[0] if defined $param[0];
$height = $param[1] if defined $param[1];
$output = '<img src="'.$session{config}{extrasURL}.'/spacer.gif"'.(defined $width?' width="'.$width.'"':'').(defined $height?' height="'.$height.'"':'').' border="0">';
$output = '<img src="'.$session{config}{extrasURL}.'/spacer.gif"'.(defined $width?' width="'.$width.'"':'').(defined $height?' height="'.$height.'"':'').' border="0" alt="" />';
return $output;
}