$post = isset($fmt['post']) ? $fmt['post'] : $name;
$fld = isset($fmt['fld']) ? $fmt['fld'] : $name;
- $value = $this->selected_id == $this->_none ? @$fmt['dflt'] :
+ $value = $this->selected_id == $this->_none ? (isset($fmt['dflt']) ? $fmt['dflt'] : null) :
(is_array($this->data) ? $this->data[$fld]: $this->data->$fld);
- $_POST[$post] = $this->_format_output($value, @$fmt['fmt']);
+ $_POST[$post] = $this->_format_output($value, isset($fmt['fmt']) ? $fmt['fmt'] : null);
}
}
//--------------------------