blob: 12d52cea50a9287cd4d0203795a2849685214b0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
/**
* @package blogs
* @subpackage functions
*/
/**
* Initial Setup
*/
global $gContent;
require_once( BLOGS_PKG_CLASS_PATH.'BitBlogPost.php');
require_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );
if( empty( $gContent ) || !is_object( $gContent ) || !$gContent->isValid() ) {
// if blog_id supplied, use that
if( @BitBase::verifyId( $_REQUEST['post_id'] ) ) {
$gContent = new BitBlogPost( $_REQUEST['post_id'] );
$gContent->load();
} elseif( @BitBase::verifyId( $_REQUEST['content_id'] ) ) {
$gContent = new BitBlogPost( NULL, $_REQUEST['content_id'] );
$gContent->load();
} else {
$gContent = new BitBlogPost();
}
$gBitSmarty->assignByRef( 'gContent', $gContent );
}
?>
|