diff --git a/intaro.retailcrm/lib/icml/icmlwriter.php b/intaro.retailcrm/lib/icml/icmlwriter.php index 165d9d63..e9f00353 100644 --- a/intaro.retailcrm/lib/icml/icmlwriter.php +++ b/intaro.retailcrm/lib/icml/icmlwriter.php @@ -175,9 +175,7 @@ class IcmlWriter */ private function writeOptionalSimpleElement(string $name, $value, bool $isEmptyAllowed = false): void { - if (!empty($value)) { - $this->writeSimpleElement($name, $value); - } elseif ($isEmptyAllowed) { + if (!empty($value) || $isEmptyAllowed) { $this->writeSimpleElement($name, $value); } }