• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_tools.php
  • Класс: logTextParser
  • Вызов: logTextParser::convert_font_attr
function convert_font_attr($attr, $value = "", $text = "")
{
	if ($text == '') return "";
	$text = str_replace("\"", """, $text);
	if ($value == '') return $text;

	if ($this->allow["LOG_FONT"] === "N")
	{
		return $text;
	}

	return parent::convert_font_attr($attr, $value, $text);
}