Fix wrong method call

This commit is contained in:
John BOTELLA 2021-12-28 18:27:29 +01:00
parent 27134a1f91
commit 019b10c9eb

View File

@ -7615,7 +7615,7 @@ abstract class CommonObject
$selectkey = $InfoFieldList[2];
}
if (!isInDb($value_arr, $InfoFieldList[0], $selectkey)) {
if (!$validate->isInDb($value_arr, $InfoFieldList[0], $selectkey)) {
$this->setFieldError($fieldKey, $validate->error);
return false;
} else { return true; }