Добрый день, подскажите как исправить ошибку. В админке при редактировании заказа вылазит ошибка
storage/modification/catalog/controller/api/customer.php on line 81
или
catalog/controller/api/customer.php on line 81
{"error": {"custom_field1":\u041e\...........\u0433\u0433) required!", "custom_field2":" ...................... required!"}}
Полагаю, что мы создали кастомные поля для заполнения клиентом и теперь система ругается на них, вот код со строчки 81
} elseif (($custom_field['type'] == 'text') && !empty($custom_field['validation']) && !filter_var($this->request->post['custom_field'][$custom_field['location']][$custom_field['custom_field_id']], FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => $custom_field['validation'])))) {
$json['error']['custom_field' . $custom_field['custom_field_id']] = sprintf($this->language->get('error_custom_field'), $custom_field['name']);
}