From e8a3f7c268823732b5e4807c171483c72661b04c Mon Sep 17 00:00:00 2001 From: Lester Caine Date: Mon, 5 Feb 2007 11:14:32 +0000 Subject: Minor corrections to comments for PHPDoc --- display_bitblog_inc.php | 11 +++++++---- display_bitblogpost_inc.php | 1 - lookup_blog_inc.php | 8 ++++++++ 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/display_bitblog_inc.php b/display_bitblog_inc.php index 14bb481..d2ce842 100644 --- a/display_bitblog_inc.php +++ b/display_bitblog_inc.php @@ -2,12 +2,15 @@ /** * @package blogs * @subpackage functions + * + * Copyright (c) 2004-2006, bitweaver.org + * All Rights Reserved. See copyright.txt for details and a complete list of authors. + * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. */ -// Copyright (c) 2004-2006, bitweaver.org -// All Rights Reserved. See copyright.txt for details and a complete list of authors. -// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. - +/** + * required setup + */ require_once( BLOGS_PKG_PATH.'BitBlog.php' ); $displayHash = array( 'perm_name' => 'p_blogs_view' ); diff --git a/display_bitblogpost_inc.php b/display_bitblogpost_inc.php index c6e8314..09bf90b 100644 --- a/display_bitblogpost_inc.php +++ b/display_bitblogpost_inc.php @@ -7,7 +7,6 @@ /** * required setup */ - include_once( BLOGS_PKG_PATH.'BitBlog.php' ); if (!isset($gContent->mPostId)) { diff --git a/lookup_blog_inc.php b/lookup_blog_inc.php index e7b4569..a2aa95d 100644 --- a/lookup_blog_inc.php +++ b/lookup_blog_inc.php @@ -1,4 +1,12 @@