summaryrefslogtreecommitdiff
path: root/demos/blog/protected/Pages/Posts/NewPost.php
diff options
context:
space:
mode:
authorxue <>2006-05-31 01:00:38 +0000
committerxue <>2006-05-31 01:00:38 +0000
commitbf900e824f2c661df6380fd0360c13377da58bae (patch)
tree283c3eb5d38d64684fdc5aedab44dcf28752c7f3 /demos/blog/protected/Pages/Posts/NewPost.php
parente3b10414305b181aa4e39e211cf6b0e9bf992518 (diff)
Fixed a few issues with the blog system.
Diffstat (limited to 'demos/blog/protected/Pages/Posts/NewPost.php')
-rw-r--r--demos/blog/protected/Pages/Posts/NewPost.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/blog/protected/Pages/Posts/NewPost.php b/demos/blog/protected/Pages/Posts/NewPost.php
index 7d02557d..bba09975 100644
--- a/demos/blog/protected/Pages/Posts/NewPost.php
+++ b/demos/blog/protected/Pages/Posts/NewPost.php
@@ -43,6 +43,7 @@ class NewPost extends BlogPage
else
$postRecord->Status=PostRecord::STATUS_PUBLISHED;
$postRecord->CreateTime=time();
+ $postRecord->ModifyTime=$postRecord->CreateTime;
$postRecord->AuthorID=$this->User->ID;
$cats=array();
foreach($this->Categories->SelectedValues as $value)