Fix disallow reserved values for field name

This commit is contained in:
Laurent Destailleur 2021-06-11 17:50:52 +02:00
parent ac965bf49a
commit 92dc0d28ce

View File

@ -137,7 +137,7 @@ if ($action == 'add') {
// Check reserved keyword with more than 3 characters
if (!$error) {
if (in_array(GETPOST('attrname', 'aZ09'), array('and', 'keyword', 'table', 'index', 'integer', 'float', 'double', 'position'))) {
if (in_array(GETPOST('attrname', 'aZ09'), array('and', 'keyword', 'table', 'index', 'int', 'integer', 'float', 'double', 'real', 'position'))) {
$error++;
$langs->load("errors");
$mesg[] = $langs->trans("ErrorReservedKeyword", GETPOST('attrname', 'aZ09'));