diff options
| -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(); |
