Ho avuto lo stesso problema oggi.
La causa risiede nel plugin jFap , infatti se lo disabiliti torna tutto alla normalità.
Per ora ho commentato il codice nel file jfap.php presente nella cartella plugins/system/jfap/jfap.php dalla riga 65 alla 88 in questo modo:
/* # Remove style from span
$style_regexp = '@<span([^>]*?)\sstyle=(["\']).*?\2([^>]*?)>@is';
$style_replace = '<span\1\3>'; $img_regexp = '@<img([^>]*?)\sborder=(["\']).*?\2([^>]*?)>@is';
$img_replace = '<img\1\3>';
# Dublin Core MD
$dc_desc_regexp = '#<meta name="description"#';
$dc_desc_replace = '<meta name="DC.Description"';
$body = preg_replace(
array($dc_desc_regexp,
//'/target=[\'"](_blank|_new)+/',
$style_regexp,
'/(<meta name="generator" content=")([^"]+)"/',
$img_regexp
),
array($dc_desc_replace,
//'onclick="window.open(this.href);return false;" onkeypress="handle_keypress(event, function(evt){ window.open(this.href); });return false;',
$style_replace,
'\1\2 - Versione FAP"',
$img_replace
),
$body);
*/
Pare che funzioni anche se non ho effettuate dei test completi.