vBulletin's unhtmlspecialchars() function starts with the following line. What does it do, and what is its purpose?
PHP Code:
$chars=preg_replace("/(&#)([0-9]*)(;)/esiU","chr(intval('\\2'))",$chars);
Comment