ah ok, eh bien ca c'est parce que tu as l'ancienne version :
dans fonctions_message.php
remplace le code que tu as ajouté
function fscode_php($texte)
{
global $langue, $theme;
return sprintf($theme['fscode_php'], '90%', $langue['php'], $texte);
}
par
function fscode_php($texte)
{
global $langue, $theme;
$texte = preg_replace('#<font color="([0-9A-Za-z\#]{1,7})">#', '<span style="color: \\1">', $texte);
$texte = preg_replace('#</font>#', '</span>', $texte);
return sprintf($theme['fscode_php'], '90%', $langue['php'], $texte);
}