diff options
Diffstat (limited to 'chat/lib/class/AJAXChatMySQLiDataBase.php')
-rw-r--r-- | chat/lib/class/AJAXChatMySQLiDataBase.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chat/lib/class/AJAXChatMySQLiDataBase.php b/chat/lib/class/AJAXChatMySQLiDataBase.php index bd3db34..53dd053 100644 --- a/chat/lib/class/AJAXChatMySQLiDataBase.php +++ b/chat/lib/class/AJAXChatMySQLiDataBase.php @@ -10,10 +10,11 @@ // Class to initialize the MySQL DataBase connection: class AJAXChatDataBaseMySQLi { - var $_connectionID; - var $_errno = 0; - var $_error = ''; - var $_dbName; + protected + $_connectionID, + $_errno = 0, + $_error = '', + $_dbName; function __construct(&$dbConnectionConfig) { $this->_connectionID = $dbConnectionConfig['link']; |