Oui et il est tres simple a l'aide d'un plugin de desactiver ce comportement, chez moi j'ai ecris ceci, ce n'est certainement pas parfait mais ca me suffit.
<?php
if(!defined("PHORUM")) return;
// HTML Phorum Mod
function phorum_hex($data)
{
$PHORUM = $GLOBALS["PHORUM"];
[^] # Re: A propos de la traduction
Posté par Victor . En réponse à la dépêche Sortie de Phorum 5. Évalué à 3.
<?php
if(!defined("PHORUM")) return;
// HTML Phorum Mod
function phorum_hex($data)
{
$PHORUM = $GLOBALS["PHORUM"];
foreach($data as $message_id => $message){
if(isset($message["body"])){
$body = $message["body"];
// restore escaped &#
$body = str_replace( "&#" , "&#" , $body );
$data[$message_id]["body"] = $body;
}
}
return $data;
}
?>