• Модуль: dav
  • Путь к файлу: ~/bitrix/modules/dav/classes/general/groupdavclient.php
  • Класс: CDavGroupdavClient
  • Вызов: CDavGroupdavClient::Decode
public function Decode($text)
{
	if (is_null($text) || empty($text))
	{
		return $text;
	}
	if ($this->encoding == "utf-8")
	{
		return $text;
	}

	global $APPLICATION;
	return $APPLICATION->ConvertCharset($text, $this->encoding, "utf-8");
}