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/AJAXChatMySQLQuery.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/AJAXChatMySQLQuery.php')
-rw-r--r-- | chat/lib/class/AJAXChatMySQLQuery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chat/lib/class/AJAXChatMySQLQuery.php b/chat/lib/class/AJAXChatMySQLQuery.php index 188a1f5..f2f3fd4 100644 --- a/chat/lib/class/AJAXChatMySQLQuery.php +++ b/chat/lib/class/AJAXChatMySQLQuery.php @@ -17,7 +17,7 @@ class AJAXChatMySQLQuery { var $_error = ''; // Constructor: - function AJAXChatMySQLQuery($sql, $connectionID = null) { + function __construct($sql, $connectionID = null) { $this->_sql = trim($sql); $this->_connectionID = $connectionID; if($this->_connectionID) { |