diff --git a/library/Director/Web/Form/Element/ExtensibleSet.php b/library/Director/Web/Form/Element/ExtensibleSet.php index a5af245b..12f6134b 100644 --- a/library/Director/Web/Form/Element/ExtensibleSet.php +++ b/library/Director/Web/Form/Element/ExtensibleSet.php @@ -32,7 +32,9 @@ class ExtensibleSet extends FormElement protected function _filterValue(&$value, &$key) { - $value = array_filter($value, 'strlen'); + if ($value !== null) { + $value = array_filter($value, 'strlen'); + } return parent::_filterValue($value, $key); }