...Человеческий поиск в разработке...
- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/classes/general/crm_component_helper.php
- Класс: \CCrmComponentHelper
- Вызов: CCrmComponentHelper::encodeErrorMessage
static function encodeErrorMessage(string $text): string { if ($text === '') { return ''; } $text = str_ireplace(['
', '
', '
'], '
', $text); $textLines = explode('
', $text); $textLines = array_map(static function($item) { return htmlspecialcharsbx($item); }, $textLines); return implode('
', $textLines); }