Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:// Create the html_entity_decode function for users prior to PHP 4.3.0
if (!function_exists("html_entity_decode")) {
function html_entity_decode($String) {
$TranslationTable = get_html_translation_table(HTML_ENTITIES);
$TranslationTable = array_flip($TranslationTable);
return strtr($String, $TranslationTable);
}
}
1 to 7 of 7