summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BitBoard.php2
-rw-r--r--BitBoardTopic.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/BitBoard.php b/BitBoard.php
index 8fa7d69..eaa0e55 100644
--- a/BitBoard.php
+++ b/BitBoard.php
@@ -29,7 +29,7 @@ class BitBoard extends LibertyMime {
* Primary key for our mythical BitBoard class object & table
* @public
*/
- var $mBitBoardId;
+ public $mBitBoardId;
/**
* During initialisation, be sure to call our base constructors
diff --git a/BitBoardTopic.php b/BitBoardTopic.php
index eae17dc..9fa73f7 100644
--- a/BitBoardTopic.php
+++ b/BitBoardTopic.php
@@ -31,13 +31,13 @@ class BitBoardTopic extends LibertyMime {
* Primary key for our mythical Messageboards class object & table
* @public
*/
- var $mRootId;
+ public $mRootId;
/**
* the content id of the topic comment object
* this is really the contentId, but mContentId houses the parent board content_id currently
**/
- var $mCommentContentId;
+ public $mCommentContentId;
/**
* During initialisation, be sure to call our base constructors