verifyPackage( 'blogs' ); if (!isset($_REQUEST["post_id"])) { $gBitSystem->fatalError( KernelTools::tra( 'No post indicated' )); } include_once BLOGS_PKG_INCLUDE_PATH.'lookup_post_inc.php'; $gBitSmarty->assign('post_info', $gContent->mInfo ); //Build absolute URI for this $parts = parse_url($_SERVER['REQUEST_URI']); $uri = KernelTools::httpPrefix(). $parts['path'] . '?post_id=' . $gContent->mInfo['post_id']; $uri2 = KernelTools::httpPrefix(). $parts['path'] . '/' . $gContent->mInfo['post_id']; $gBitSmarty->assign('uri', $uri); $gBitSmarty->assign('uri2', $uri2); if (!isset($_REQUEST['offset'])) $_REQUEST['offset'] = 0; if (!isset($_REQUEST['sort_mode'])) $_REQUEST['sort_mode'] = 'created_desc'; if (!isset($_REQUEST['find'])) $_REQUEST['find'] = ''; $gBitSmarty->assign('offset', $_REQUEST["offset"]); $gBitSmarty->assign('sort_mode', $_REQUEST["sort_mode"]); $gBitSmarty->assign('find', $_REQUEST["find"]); $offset = $_REQUEST["offset"]; $sort_mode = $_REQUEST["sort_mode"]; $find = $_REQUEST["find"]; $gBitSmarty->assign( 'parsed_data', $gContent->getParsedData() ); $gBitSystem->verifyPermission( 'p_blogs_view' ); if ($gBitSystem->isFeatureActive( 'blog_posts_comments' )) { $comments_return_url = $_SERVER['SCRIPT_NAME']."?post_id=".$gContent->getField( 'post_id' ); $commentsParentId = $gContent->mContentId; include_once LIBERTY_PKG_INCLUDE_PATH.'comments_inc.php'; } $gBitSystem->setBrowserTitle( $gContent->mInfo['title'] ); // Display the template $gBitSmarty->display("bitpackage:blogs/print_blog_post.tpl");