Commit a0e4b782 authored by Fred Drake's avatar Fred Drake

img_tag(): For \n to be interpreted as a newline, the string must use double

	quote, not single quotes.  Ugh.
parent d22e2500
......@@ -193,7 +193,7 @@ sub img_tag {
,'" src="', $icon, '">' );
}
return join('', '<img ', $iconsizes{$1}, $align
,'border=', $nav_border, ' alt="', $alt, '"\n'
,'border=', $nav_border, ' alt="', $alt, "\"\n"
,' src="', $ICONSERVER, "/$icon", '">' );
}
else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment