diff options
| author | modela bitweaver <bitweaver@modela> | 2016-06-22 13:12:28 -0400 |
|---|---|---|
| committer | modela bitweaver <bitweaver@modela> | 2016-06-22 13:12:28 -0400 |
| commit | 514e77d27151ca5a273caf8643d7829e22961ef5 (patch) | |
| tree | 352d2d7775ebf5b77aeaf6ad2ead4642e9081eaa | |
| parent | a03f509361a8efb5bc831f85f389b9baf3f7c297 (diff) | |
| download | blogs-514e77d27151ca5a273caf8643d7829e22961ef5.tar.gz blogs-514e77d27151ca5a273caf8643d7829e22961ef5.tar.bz2 blogs-514e77d27151ca5a273caf8643d7829e22961ef5.zip | |
change-class-var-to-public
| -rw-r--r-- | BitBlog.php | 2 | ||||
| -rw-r--r-- | BitBlogPost.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/BitBlog.php b/BitBlog.php index 58856e5..0c99b00 100644 --- a/BitBlog.php +++ b/BitBlog.php @@ -17,7 +17,7 @@ define( 'BITBLOG_CONTENT_TYPE_GUID', 'bitblog' ); * @package blogs */ class BitBlog extends LibertyMime { - var $mBlogId; + public $mBlogId; function __construct( $pBlogId=NULL, $pContentId=NULL ) { $this->mBlogId = @$this->verifyId( $pBlogId ) ? $pBlogId : NULL; diff --git a/BitBlogPost.php b/BitBlogPost.php index f59e815..3e6d897 100644 --- a/BitBlogPost.php +++ b/BitBlogPost.php @@ -30,7 +30,7 @@ define( 'BITBLOGPOST_CONTENT_TYPE_GUID', 'bitblogpost' ); * @package blogs */ class BitBlogPost extends LibertyMime { - var $mPostId; + public $mPostId; function __construct( $pPostId=NULL, $pContentId=NULL ) { parent::__construct(); |
