From 514e77d27151ca5a273caf8643d7829e22961ef5 Mon Sep 17 00:00:00 2001 From: modela bitweaver Date: Wed, 22 Jun 2016 13:12:28 -0400 Subject: change-class-var-to-public --- BitBlog.php | 2 +- 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(); -- cgit v1.3