From 0badfecd9787a5da13aa16516c1b6ca966cd3f15 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 18 Feb 2005 22:02:42 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Le=20remplacement=20des=20caract=E8res?= =?UTF-8?q?=20du=20mot=20de=20passe=20par=20*=20remplacait=20par=20\*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/admin/system/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/admin/system/index.php b/htdocs/admin/system/index.php index 2fd6714a113..a23ec403879 100644 --- a/htdocs/admin/system/index.php +++ b/htdocs/admin/system/index.php @@ -96,7 +96,7 @@ print "".$langs->trans("Version")."" . $row[1] . "< print "".$langs->trans("Type")."" . $conf->db->type . "\n"; print "".$langs->trans("Host")."" . $conf->db->host . "\n"; print "".$langs->trans("User")."" . $conf->db->user . " \n"; -print "".$langs->trans("Password")."" . ereg_replace(".","\*",$conf->db->pass) . " \n"; +print "".$langs->trans("Password")."" . ereg_replace(".","*",$conf->db->pass) . " \n"; print "".$langs->trans("DatabaseName")."" . $conf->db->name . "\n"; print '';