diff options
author | Frug <frugen@gmail.com> | 2014-01-14 14:33:01 -0500 |
---|---|---|
committer | Frug <frugen@gmail.com> | 2014-01-14 14:33:01 -0500 |
commit | 8f534e66ea0809b41a5ff5d55d4db7a614709a62 (patch) | |
tree | 311847cef631ba907507f38d38ed184bc78507e2 /chat/lib/class/AJAXChatMySQLiDataBase.php | |
parent | b8da142891de8764dab1a255527bb480cf75f94b (diff) | |
download | AJAX-Chat-8f534e66ea0809b41a5ff5d55d4db7a614709a62.zip AJAX-Chat-8f534e66ea0809b41a5ff5d55d4db7a614709a62.tar.gz AJAX-Chat-8f534e66ea0809b41a5ff5d55d4db7a614709a62.tar.bz2 |
use __construct
Diffstat (limited to 'chat/lib/class/AJAXChatMySQLiDataBase.php')
-rw-r--r-- | chat/lib/class/AJAXChatMySQLiDataBase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat/lib/class/AJAXChatMySQLiDataBase.php b/chat/lib/class/AJAXChatMySQLiDataBase.php index 9c64a37..9bc611e 100644 --- a/chat/lib/class/AJAXChatMySQLiDataBase.php +++ b/chat/lib/class/AJAXChatMySQLiDataBase.php @@ -15,7 +15,7 @@ class AJAXChatDataBaseMySQLi { var $_error = ''; var $_dbName; - function AJAXChatDataBaseMySQLi(&$dbConnectionConfig) { + function __construct(&$dbConnectionConfig) { $this->_connectionID = $dbConnectionConfig['link']; $this->_dbName = $dbConnectionConfig['name']; } |