diff --git a/forms/TableField.php b/forms/TableField.php index a3495feb9..0fbe99995 100644 --- a/forms/TableField.php +++ b/forms/TableField.php @@ -223,7 +223,7 @@ class TableField extends TableListField { function SubmittedFieldSet(&$sourceItems){ $fields = array (); - if($rows = $_POST[$this->name]){ + if(isset($_POST[$this->name])&&$rows = $_POST[$this->name]){ if(count($rows)){ foreach($rows as $idx => $row){ if($idx == 'new'){