PMCORE-4255 Dynaform, trigger, DB Connection not listed in classic process

This commit is contained in:
Julio Cesar Laura Avendaño
2023-06-27 16:57:01 +00:00
parent 42a53e4522
commit 573f239377
16 changed files with 39 additions and 61 deletions

View File

@@ -251,7 +251,7 @@ class Form extends XmlForm
if ((sizeof( $this->values[$k] ) === 1) && ($v->type !== 'grid') && isset( $this->values[$k][0] )) {
$this->values[$k] = $this->values[$k][0];
}
if (sizeof( $this->values[$k] ) === 0) {
if (is_countable($this->values[$k]) && sizeof( $this->values[$k] ) === 0) {
$this->values[$k] = '';
}
} else {