Revert "Show number with dot to avoid error when update extrafield"

This reverts commit 76efc04840.
This commit is contained in:
jfefe 2013-03-30 10:49:52 +01:00
parent e99ba51f1d
commit 95d8ee8b41

View File

@ -663,7 +663,7 @@ class ExtraFields
}
elseif ($type == 'price')
{
$out='<input type="text" name="options_'.$key.'" size="6" value="'.price2num($value).'"> '.$langs->getCurrencySymbol($conf->currency);
$out='<input type="text" name="options_'.$key.'" size="6" value="'.price($value).'"> '.$langs->getCurrencySymbol($conf->currency);
}
elseif ($type == 'select')
{