diff --git a/htdocs/admin/dict.php b/htdocs/admin/dict.php
index 41178e36012..ef64ad34527 100644
--- a/htdocs/admin/dict.php
+++ b/htdocs/admin/dict.php
@@ -456,11 +456,12 @@ if (GETPOST('actionadd') || GETPOST('actionmodify'))
$ok=0;
$msg.= $langs->transnoentities('ErrorCodeCantContainZero').'
';
}
- if (!is_numeric($_POST['code']))
+ // FIXME regresion if code with not in numeric base
+ /*if (!is_numeric($_POST['code']))
{
$ok = 0;
$msg .= $langs->transnoentities('ErrorFieldFormat', $langs->transnoentities('Code')).'
';
- }
+ }*/
}
if (isset($_POST["country"]) && $_POST["country"]=='0') {
$ok=0;