summaryrefslogtreecommitdiff
path: root/lookup_post_inc.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-08-01 18:40:05 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-08-01 18:40:05 +0000
commit21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4 (patch)
tree1685d8602f4674e12781efff81e32f2237b47ade /lookup_post_inc.php
parenta09f7396779ae017a2a60993e28bc88faee13f9c (diff)
downloadblogs-21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4.tar.gz
blogs-21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4.tar.bz2
blogs-21e69057e4a6ae3ed3b31a25b8d4c1c8924683e4.zip
merge recent changes with HEAD - R1 and HEAD are identical now
Diffstat (limited to 'lookup_post_inc.php')
-rw-r--r--lookup_post_inc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lookup_post_inc.php b/lookup_post_inc.php
index cf4f1dd..dabb050 100644
--- a/lookup_post_inc.php
+++ b/lookup_post_inc.php
@@ -4,13 +4,13 @@
* @subpackage functions
*/
- global $gContent, $smarty;
+ global $gContent, $gBitSmarty;
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 );
+ $gBitSmarty->assign_by_ref( 'gContent', $gContent );
}
?>