From b0a1cc4ca5fc5d3811c86d238a0f08600a86604d Mon Sep 17 00:00:00 2001 From: pedro_morgan <pedro_morgan@ispconfig3> Date: Sun, 19 Aug 2007 22:25:07 -0400 Subject: [PATCH] Added the mysql database to use --- install/lib/installer_base.lib.php | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/install/lib/installer_base.lib.php b/install/lib/installer_base.lib.php index 1290409..9c5d12c 100644 --- a/install/lib/installer_base.lib.php +++ b/install/lib/installer_base.lib.php @@ -33,13 +33,14 @@ var $wb = array(); var $language = 'en'; var $db; - + private $conf; /* */ - function contstruct() + function __construct() { - die('ere'); + global $conf; //TODO: maybe $conf should be passed to constructor + $this->conf = $conf; } -- Gitblit v1.9.1