summaryrefslogtreecommitdiffstats
path: root/chat/lib/class/AJAXChatMySQLQuery.php
diff options
context:
space:
mode:
Diffstat (limited to 'chat/lib/class/AJAXChatMySQLQuery.php')
-rw-r--r--chat/lib/class/AJAXChatMySQLQuery.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/chat/lib/class/AJAXChatMySQLQuery.php b/chat/lib/class/AJAXChatMySQLQuery.php
index fd7a451..8343216 100644
--- a/chat/lib/class/AJAXChatMySQLQuery.php
+++ b/chat/lib/class/AJAXChatMySQLQuery.php
@@ -10,11 +10,12 @@
// Class to perform SQL (MySQL) queries:
class AJAXChatMySQLQuery {
- var $_connectionID;
- var $_sql = '';
- var $_result = 0;
- var $_errno = 0;
- var $_error = '';
+ protected
+ $_connectionID,
+ $_sql = '',
+ $_result = 0,
+ $_errno = 0,
+ $_error = '';
// Constructor:
function __construct($sql, $connectionID = null) {