summaryrefslogtreecommitdiff
path: root/post.php
diff options
context:
space:
mode:
authorwjames5 <will@tekimaki.com>2007-03-02 23:26:28 +0000
committerwjames5 <will@tekimaki.com>2007-03-02 23:26:28 +0000
commit6224bc98e2af9fe1dfff72b84a64647f36e131b7 (patch)
treef797e82929773fb07f4a2321b60ddc5a27a0f45e /post.php
parentd891c516259338e33a1e6209c9421dc0129c94cc (diff)
downloadblogs-6224bc98e2af9fe1dfff72b84a64647f36e131b7.tar.gz
blogs-6224bc98e2af9fe1dfff72b84a64647f36e131b7.tar.bz2
blogs-6224bc98e2af9fe1dfff72b84a64647f36e131b7.zip
enable editing of publish and expire time, set publish time as default time displayed, note expired check not in place yet
Diffstat (limited to 'post.php')
-rw-r--r--post.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/post.php b/post.php
index 99dfeee..f01f6b6 100644
--- a/post.php
+++ b/post.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_blogs/post.php,v 1.29 2007/03/02 21:34:25 wjames5 Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_blogs/post.php,v 1.30 2007/03/02 23:26:28 wjames5 Exp $
* @package blogs
* @subpackage functions
@@ -98,6 +98,7 @@ if( isset($_REQUEST["post_id"]) && BitBase::verifyId( $_REQUEST["post_id"] ) ) {
$gBitSmarty->assign('trackbacks_to', $gContent->mInfo["trackbacks_to"]);
$gBitSmarty->assign('created', $gContent->mInfo["created"]);
$gBitSmarty->assign('parsed_data', $gContent->parseData() );
+ $gBitSmarty->assign('post_info', $gContent->mInfo );
} else {
// Avoid undefined trackbacks_to smarty var in the case of 'preview'
$gBitSmarty->assign('trackbacks_to', NULL);