Bueno si probre con htmlentities:
Código PHP:
$contenido = load("SELECT * FROM ".$MYSQL["prefix"]."posts WHERE post_status='publish' AND ID='".mysql_scape($noticia)."'",__FILE__,__LINE__);
list($replace["{\$imagen}"]) = load("SELECT guid FROM ".$MYSQL["prefix"]."posts WHERE post_parent='".$contenido["ID"]."' AND post_type='attachment' ORDER BY post_date DESC limit 1",__FILE__,__LINE__);
foreach($contenido as $key => $value) { $replace["{\$".$key."}"] = htmlentities($value); }
$page = page("site-noticia.html");
$return = strtr($page, $replace);
ahi mira el codigo o.O y dime si algo esta mal D:
y esta parte
Código PHP:
foreach($contenido as $key => $value) { $replace["{\$".$key."}"] = htmlentities($value); }
es donde saca la informacion de la base de datos.