From 5501be8a358c44707752aa6d857af09599b4bfa9 Mon Sep 17 00:00:00 2001 From: Till Brehm <tbrehm@ispconfig.org> Date: Sat, 23 Jul 2016 12:15:07 -0400 Subject: [PATCH] Fixed #3980 Subdomain (vhost) - Domain added to host each save --- install/lib/mysql.lib.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/lib/mysql.lib.php b/install/lib/mysql.lib.php index 11fd2ec..7cf06ee 100644 --- a/install/lib/mysql.lib.php +++ b/install/lib/mysql.lib.php @@ -776,7 +776,7 @@ * * @access private */ - public function db_result($iResId, $iConnection) { + public function __construct($iResId, $iConnection) { $this->_iResId = $iResId; $this->_iConnection = $iConnection; } @@ -902,7 +902,7 @@ * * @access private */ - public function fakedb_result($aData) { + public function __construct($aData) { $this->aResultData = $aData; $this->aLimitedData = $aData; reset($this->aLimitedData); -- Gitblit v1.9.1