diff options
| author | spider@app1 <spiderr@bitweaver.org> | 2016-06-21 22:07:06 -0400 |
|---|---|---|
| committer | spider@app1 <spiderr@bitweaver.org> | 2016-06-21 22:07:06 -0400 |
| commit | d6fab4573d1814ba6ce26c8c3e5ddb90a10e1d18 (patch) | |
| tree | c4edc081e396ab0cd267a52d227637257d922ec5 | |
| parent | 2ceae83998246411b01b09a9c5e49d86f49470d6 (diff) | |
| download | boards-d6fab4573d1814ba6ce26c8c3e5ddb90a10e1d18.tar.gz boards-d6fab4573d1814ba6ce26c8c3e5ddb90a10e1d18.tar.bz2 boards-d6fab4573d1814ba6ce26c8c3e5ddb90a10e1d18.zip | |
change-class-var-to-public
| -rw-r--r-- | BitBoard.php | 2 | ||||
| -rw-r--r-- | BitBoardTopic.php | 4 |
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 |
