diff --git a/gulliver/system/class.xmlform.php b/gulliver/system/class.xmlform.php index 89f7b8de3..89589a14b 100644 --- a/gulliver/system/class.xmlform.php +++ b/gulliver/system/class.xmlform.php @@ -3089,7 +3089,10 @@ class XmlForm_Field_Grid extends XmlForm_Field if ($therow != -1){ //Check if values arrary is complete to can flip. $xValues = array(); - $aRow = $values[$therow]; + if (isset($values[$therow])) + $aRow = $values[$therow]; + else + $aRow = array(); for ($c=1; $c <= $therow; $c++){ if ($c == $therow){ $xValues[$therow] = $aRow;