]> git.mxchange.org Git - friendica.git/commitdiff
put back notags
authorfriendica <info@friendica.com>
Sat, 4 Aug 2012 01:36:45 +0000 (18:36 -0700)
committerfriendica <info@friendica.com>
Sat, 4 Aug 2012 01:36:45 +0000 (18:36 -0700)
include/items.php

index 40b2c14b45ae71fe6ba60d0234acb4dddce6e05e..3b09dfa688c518750079cdad64638516b61ef611 100755 (executable)
@@ -533,7 +533,7 @@ function get_atom_elements($feed,$item) {
                $res['body'] = $rawenv[0]['data'];
                $res['body'] = str_replace(array(' ',"\t","\r","\n"), array('','','',''),$res['body']);
                // make sure nobody is trying to sneak some html tags by us
-               $res['body'] = htmlspecialchars(base64url_decode($res['body']),ENT_QUOTES,'UTF-8');
+               $res['body'] = notags(base64url_decode($res['body']));
        }