blob: 2db4d96b4a2f77337514d1a146a1e9a1b1301cbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
global $gContent, $smarty;
if( empty( $gContent ) || !is_object( $gContent ) || !$gContent->isValid() ) {
$postId = isset( $_REQUEST['post_id'] ) ? $_REQUEST['post_id'] : NULL;
$gContent = new BitBlogPost( $postId );
$gContent->load();
$comments_return_url = $_SERVER['PHP_SELF']."?post_id=$postId";
$smarty->assign_by_ref( 'gContent', $gContent );
}
?>
|