From b79a7e67eac5578c85646daecbd40b2ddc1ebcb7 Mon Sep 17 00:00:00 2001 From: shrykedude Date: Sun, 18 Jan 2004 02:24:42 +0000 Subject: [PATCH] load DB port with other settings --- phpgwapi/inc/class.setup.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpgwapi/inc/class.setup.inc.php b/phpgwapi/inc/class.setup.inc.php index f72d8e80c9..0105056446 100644 --- a/phpgwapi/inc/class.setup.inc.php +++ b/phpgwapi/inc/class.setup.inc.php @@ -62,6 +62,7 @@ $this->db = CreateObject('phpgwapi.db'); $this->db->Host = $GLOBALS['phpgw_domain'][$this->ConfigDomain]['db_host']; + $this->db->Port = $GLOBALS['phpgw_domain'][$this->ConfigDomain]['db_port']; $this->db->Type = $GLOBALS['phpgw_domain'][$this->ConfigDomain]['db_type']; $this->db->Database = $GLOBALS['phpgw_domain'][$this->ConfigDomain]['db_name']; $this->db->User = $GLOBALS['phpgw_domain'][$this->ConfigDomain]['db_user'];