diff --git a/inc-admin.php3 b/inc-admin.php3 index ce88a9052aa94453e6828a2985d4ca18f271028b..829c9c17a743e8e516eb6a48a3ab77210dc0bc82 100644 --- a/inc-admin.php3 +++ b/inc-admin.php3 @@ -369,13 +369,19 @@ function debug_dumpfile ($texte) { } if ($texte) { - $tableau = explode("\n", $texte); - $format = "%0".strlen(count($tableau))."d"; - $texte = ''; - foreach ($tableau as $ligne) - $texte .= "\n".sprintf($format, ++$i).'. '.$ligne; echo "<div id=\"debug_boucle\"><fieldset><legend>".$GLOBALS['debug_affiche']."</legend>"; + ob_start(); highlight_string($texte); + $s = ob_get_contents(); + ob_end_clean(); + $tableau = explode("<br />", $s); + $format = "<br>\n<span style='color: black'>%0". + strlen(count($tableau)). + "d </span>"; + $i=0; + foreach ($tableau as $ligne) echo $ligne, sprintf($format, ++$i); + + echo "</fieldset></div>"; } echo "\n</div></body>";