BBCode::HTMLEncode( $string )
Contents
Description Description
Source Source
File: includes/admin/parser.php
function HTMLEncode($string) {
if (!$this->allow_ampersand)
return htmlspecialchars($string);
else return str_replace(Array('<', '>', '"'),
Array('<', '>', '"'), $string);
}