I need the attribute name and/or label to render html (italics primarily).
When I changed
$name = _uc_attribute_get_name($attribute, FALSE);
if (!is_null($name)) {
$form_attributes[$attribute->aid]['#title'] = check_plain($name);
}to
$name = _uc_attribute_get_name($attribute, FALSE);
if (!is_null($name)) {
$form_attributes[$attribute->aid]['#title'] = check_markup($name);
}Ubercart is putting paragraph tags around the attribute name/label.
Any ideas?


