diff --git a/models/Form.php b/models/Form.php index 64cfe04b..62952ae5 100644 --- a/models/Form.php +++ b/models/Form.php @@ -61,7 +61,7 @@ class Form { $this->missing[] = $field_id; $this->data[$field_id] = ''; - continue; + continue 2; } else $this->data[$field_id] = $post[$field_id]; @@ -78,7 +78,7 @@ class Form { $this->missing[] = $field_id; $this->data[$field_id] = ''; - continue; + continue 2; } else $this->data[$field_id] = $post[$field_id];