Skip to content
Snippets Groups Projects
Commit b0fa4269 authored by Jared Hancock's avatar Jared Hancock
Browse files

forms: Fix warnings when creating a new custom form

parent 4fff1e34
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,9 @@ class DynamicForm extends VerySimpleModel {
}
function getDynamicFields() {
if (!$this->_dfields && isset($this->id)) {
if (!isset($this->id))
return array();
elseif (!$this->_dfields) {
$this->_dfields = DynamicFormField::objects()
->filter(array('form_id'=>$this->id))
->all();
......
......@@ -11,6 +11,7 @@ if($_POST) {
$required = array('title');
$max_sort = 0;
$form_fields = array();
$names = array();
switch(strtolower($_POST['do'])) {
case 'update':
foreach ($fields as $f)
......@@ -20,7 +21,6 @@ if($_POST) {
elseif (isset($_POST[$f]))
$form->set($f, $_POST[$f]);
$form->save(true);
$names = array();
foreach ($form->getDynamicFields() as $field) {
$id = $field->get('id');
if ($_POST["delete-$id"] == 'on' && $field->isDeletable()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment