function lingotek_xml_decode in Lingotek Translation 6
Same name and namespace in other branches
- 7.2 lingotek.util.inc \lingotek_xml_decode()
1 call to lingotek_xml_decode()
File
- ./
lingotek.util.inc, line 76 - Utilities
Code
function lingotek_xml_decode($text) {
$text = str_replace("<", "<", $text);
$text = str_replace(">", ">", $text);
$text = str_replace("'", "'", $text);
$text = str_replace(""", "\"", $text);
$text = str_replace("&", "&", $text);
return $text;
}