From 1f42a6dc6550c9a0e182a6bd097f38c474d86919 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Fri, 12 Sep 2003 16:46:15 +0000 Subject: [PATCH] Suppression du code de lecture contenant les getenv, cela casse l'authentification par Pear. --- htdocs/conf/conf.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/htdocs/conf/conf.class.php b/htdocs/conf/conf.class.php index b2d290edf51..3f1223e8276 100644 --- a/htdocs/conf/conf.class.php +++ b/htdocs/conf/conf.class.php @@ -86,11 +86,17 @@ class DbConf { SetEnv LLX_DBNAME dolibarr */ +/* + * Ce bloc de code, casse l'authentification par Pear::Auth !! + * La conf est positionnée dans conf.php les virtualhost ne sont + * pas encore valide + * $this->type = getenv("LLX_DBTYPE"); $this->host = getenv("LLX_DBHOST"); $this->user = getenv("LLX_DBUSER"); $this->pass = getenv("LLX_DBPASS"); $this->name = getenv("LLX_DBNAME"); +*/ }