добавлена обработка пустых полей
This commit is contained in:
parent
202e0ffd17
commit
00e6f1716e
@ -332,6 +332,9 @@ class RestNormalizer
|
||||
|
||||
if (is_array($data)) {
|
||||
foreach ($data as $code => $value) {
|
||||
if (is_array($value)) {
|
||||
$value = array_diff($value, array('', NULL));
|
||||
}
|
||||
$data[$APPLICATION->ConvertCharset($code, SITE_CHARSET, 'utf-8')] = is_array($value)
|
||||
? $this->multiConvert($value)
|
||||
: $APPLICATION->ConvertCharset($value, SITE_CHARSET, 'utf-8');
|
||||
|
Loading…
x
Reference in New Issue
Block a user