Don't lower-case parsed attributes

This commit is contained in:
moodler
2004-08-23 02:21:59 +00:00
parent 6136dfc887
commit ec51c7fb33
+1 -1
View File
@@ -796,7 +796,7 @@ function cleanAttributes2($htmlTag){
$attStr = '';
foreach ($attrArray as $arreach)
{
$attStr .= ' '.strtolower($arreach['name']).'="'.strtolower($arreach['value']).'" ';
$attStr .= ' '.strtolower($arreach['name']).'="'.$arreach['value'].'" ';
}
$xhtml_slash = '';
if (preg_match('%/\s*$%', $attrlist)){