Fix disallow reserved values for field name
This commit is contained in:
parent
ac965bf49a
commit
92dc0d28ce
@ -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'));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user