diff --git a/ajax/contact/saveproperty.php b/ajax/contact/saveproperty.php index 421ddedf..d3ec402e 100644 --- a/ajax/contact/saveproperty.php +++ b/ajax/contact/saveproperty.php @@ -52,6 +52,11 @@ function setParameters($property, $parameters, $reset = false) { } } } + } else { + if(trim($key) && trim($parameter)) { + debug('Adding parameter: '.$key.'=>'.print_r($parameter, true)); + $property->add($key, strip_tags($parameter)); + } } } }