浏览代码

Fix disallow reserved values for field name

Laurent Destailleur 4 年之前
父节点
当前提交
92dc0d28ce
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      htdocs/core/actions_extrafields.inc.php

+ 1 - 1
htdocs/core/actions_extrafields.inc.php

@@ -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'));