芝麻web文件管理V1.00
编辑当前文件:/home/asmplong/www/ancien-site-2019/site/libraries/joomla/html/html/email.php
"; $replacement .= "\n "; $replacement .= '\n '; // XHTML compliance no Javascript text handling $replacement .= ""; $replacement .= JText::_('JLIB_HTML_CLOAKING'); $replacement .= "\n "; return $replacement; } /** * Convrt encoded text * * @param string $text Text to convert * * @return string The converted text. * * @since 11.1 */ protected static function _convertEncoding($text) { // Replace vowels with character encoding $text = str_replace('a', 'a', $text); $text = str_replace('e', 'e', $text); $text = str_replace('i', 'i', $text); $text = str_replace('o', 'o', $text); $text = str_replace('u', 'u', $text); return $text; } }