added a trim to cope with junk after charset name

This commit is contained in:
Ralf Becker 2004-12-05 16:35:24 +00:00
parent 3723acdbf2
commit 948f739fd6

View File

@ -175,7 +175,7 @@
}
$html = CreateObject('phpgwapi.html');
return $html->select($name,strtolower($selected),$charsets,true);
return $html->select($name,trim(strtolower($selected)),$charsets,true);
}
}
?>