• Модуль: webdav
  • Путь к файлу: ~/bitrix/modules/webdav/classes/general.php
  • Класс: CWebDavBase
  • Вызов: CWebDavBase::_prop_encode
function _prop_encode($text)
{
	global $APPLICATION;
	$res = $text;
	if (mb_strtolower($this->_prop_encoding) != 'utf-8')
		$res = $APPLICATION->ConvertCharset($text, SITE_CHARSET, 'UTF-8');
	return $res;
}