]> git.mxchange.org Git - friendica.git/blobdiff - boot.php
remote comments working now
[friendica.git] / boot.php
index 754be481267fc94a468badb9e36df9f88ce966df..02c37a93f126b91da56851b954059514467adf23 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -370,6 +370,11 @@ function xmlify($str) {
        return($buffer);
 }}
 
+function unxmlify($s) {
+       $ret = str_replace('&','&', $s);
+       $ret = str_replace(array('&lt;','&gt;','&quot;','&apos;'),array('<','>','"',"'"),$ret);
+       return $ret;    
+}
 
 function hex2bin($s) {
        return(pack("H*",$s));