From 353b9720119b2ce4108b1194b49d8133863b6d53 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Tue, 30 Mar 2010 17:18:10 +0000 Subject: [PATCH] Fix: add core path --- htdocs/core/conf.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/core/conf.class.php b/htdocs/core/conf.class.php index 8ed545028e9..92053bb87dd 100644 --- a/htdocs/core/conf.class.php +++ b/htdocs/core/conf.class.php @@ -84,6 +84,8 @@ class Conf // Add root path $this->include_path[] = DOL_DOCUMENT_ROOT."/"; + // Add core path + $this->include_path[] = DOL_DOCUMENT_ROOT."/core/"; // Add library path $this->include_path[] = DOL_DOCUMENT_ROOT."/lib/";