From e472fc79ed08a97591f22c1b7699b26248bc38b3 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 20 May 2006 10:49:07 +0000 Subject: [PATCH] Fix: Plantage si module propal non actif --- htdocs/comm/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/comm/index.php b/htdocs/comm/index.php index 4b5b1ae1038..c16fe5c81e1 100644 --- a/htdocs/comm/index.php +++ b/htdocs/comm/index.php @@ -49,7 +49,7 @@ if ($user->societe_id > 0) $max=5; -$propalstatic=new Propal($db); +if ($conf->propal->enabled) $propalstatic=new Propal($db);