--- class.t3lib_parsehtml.php.orig 2005-05-18 13:22:11.708325080 +0200
+++ class.t3lib_parsehtml.php 2005-05-18 13:26:43.968935176 +0200
@@ -1275,7 +1275,7 @@
}
$newTag='<'.trim($tagName.' '.implode(' ',$outA));
// All tags that are standalone (not wrapping, not having endtags) should be ended with '/>'
- if (t3lib_div::inList('img,br,hr,meta,link,base,area,input',$tagName) || substr($value,-2)=='/>') {
+ if (t3lib_div::inList('img,br,hr,meta,link,base,area,input,param,col',$tagName) || substr($value,-2)=='/>') {
$newTag.=' />';
} else {
$newTag.='>';