From eed8f1afb7cbbc5238681f8f1bdfa8a3b48a0eed Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 2 Sep 2005 16:52:44 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Valeur=20des=20constantes=20contenaient?= =?UTF-8?q?=20des=20\=20si=20une=20apostrophe=20=E9tait=20ins=E9r=E9e.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/master.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/master.inc.php b/htdocs/master.inc.php index 297ea6d8297..b3b83a456c3 100644 --- a/htdocs/master.inc.php +++ b/htdocs/master.inc.php @@ -135,7 +135,7 @@ if ($result) { $objp = $db->fetch_object($result); $key=$objp->name; - $value=$objp->value; + $value=stripslashes($objp->value); define ("$key", $value); $conf->global->$key=$value; $i++;