From b06a04e0618b0796feb07b54ce49bcaf60b36694 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 16 Jan 2005 17:36:39 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20La=20variable=20$conf->clicktodial->enab?= =?UTF-8?q?led=20est=20bien=20d=E9finie=20en=20fonction=20de=20l'activatio?= =?UTF-8?q?n=20du=20module.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/master.inc.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/htdocs/master.inc.php b/htdocs/master.inc.php index ceb11e4df51..8f7b1e50efb 100644 --- a/htdocs/master.inc.php +++ b/htdocs/master.inc.php @@ -294,6 +294,10 @@ if (defined("MAIN_MODULE_POSTNUKE")) { $conf->postnuke->enabled=MAIN_MODULE_POSTNUKE; } +if (defined("MAIN_MODULE_CLICKTODIAL")) +{ + $conf->clicktodial->enabled=MAIN_MODULE_CLICKTODIAL; +} if (defined("MAIN_MODULE_TELEPHONIE")) { $conf->telephonie->enabled=MAIN_MODULE_TELEPHONIE; @@ -342,6 +346,7 @@ $conf->propal->dir_output=DOL_DATA_ROOT."/propale"; if (defined(PROPALE_OUTPUTDIR) && PROPALE_OUTPUTDIR) { $conf->propal->dir_output=PROPALE_OUTPUTDIR; } # Pour passer outre le rep par défaut + /* * Modification de quelques variable de conf en fonction des Constantes */