Fix: add possibility to defined a different icon with css

This commit is contained in:
Regis Houssin 2012-02-22 16:26:01 +08:00
parent 6d9c986455
commit 5a715bb4ea

View File

@ -86,7 +86,7 @@ class Form
if ($perm) if ($perm)
{ {
$tmp=explode(':',$typeofdata); $tmp=explode(':',$typeofdata);
$ret.= '<div class="editkey_'.$tmp[0].'" id="'.$htmlname.'">'; $ret.= '<div class="editkey_'.$tmp[0].' '.$tmp[1].'" id="'.$htmlname.'">';
$ret.= $langs->trans($text); $ret.= $langs->trans($text);
$ret.= '</div>'."\n"; $ret.= '</div>'."\n";
} }