From 089ed3c2d70112a115ff2e1f30d9ae4832e39b80 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 14 Mar 2004 16:09:14 +0000 Subject: [PATCH] =?UTF-8?q?Correction=20bug=20mineur:=20Les=20=E9crans=20d?= =?UTF-8?q?'info=20syst=E8me=20php=20ne=20conservaient=20pas=20le=20style?= =?UTF-8?q?=20du=20fond=20d'=E9cran.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/admin/system/phpinfo.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/admin/system/phpinfo.php b/htdocs/admin/system/phpinfo.php index 5e27c61c69b..1097bba194a 100644 --- a/htdocs/admin/system/phpinfo.php +++ b/htdocs/admin/system/phpinfo.php @@ -51,6 +51,7 @@ $chaine = ob_get_contents(); ob_end_clean(); # Nettoie la sortie php pour inclusion dans une page deja existante +$chaine = eregi_replace('background-color: #ffffff;','',$chaine); $chaine = eregi_replace('.*.*','',$chaine); $chaine = eregi_replace('.*<body>','',$chaine);