put back notags

pull/424/head
friendica 2012-08-03 18:36:45 -07:00
rodzic bceae7b4c0
commit 0c67649c08
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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']));
}