BUG 7165 "Notice en campo suggest" solved

- a missing declaration was the problem, bu is fixed now
This commit is contained in:
Erik Amaru Ortiz
2011-06-30 15:06:20 -04:00
parent 0e896f4763
commit 59e4d8679c

View File

@@ -318,7 +318,7 @@ class Form extends XmlForm
case 'checkgroup':
case 'listbox':
if ( is_array($newValues[$k]) ) {
$values[$k] = '';
$values[$k] = $values["{$k}_label"] = '';
foreach ($newValues[$k] as $i => $value) {
//if $value is empty continue with the next loop, because this is a not selected/checked item
if (trim($value) == '') {