From 67168b0ea5781951eaf6a7566762b44acc17d12c Mon Sep 17 00:00:00 2001 From: nickw Date: Mon, 5 Apr 2010 22:21:29 +0000 Subject: Adding a datetime view for use with blog publication. git-svn-id: http://code.elgg.org/elgg/trunk@5630 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/blog/actions/blog/save.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'mod/blog/actions') diff --git a/mod/blog/actions/blog/save.php b/mod/blog/actions/blog/save.php index 7115acaa4..db9ea77e8 100644 --- a/mod/blog/actions/blog/save.php +++ b/mod/blog/actions/blog/save.php @@ -45,7 +45,6 @@ $values = array( 'title' => '', 'description' => '', 'status' => 'draft', - 'publish_date' => time(), 'access_id' => ACCESS_DEFAULT, 'comments_on' => 'On', 'excerpt' => '', @@ -99,14 +98,6 @@ foreach ($values as $name => $default) { } break; - case 'publish_date': - if (!$value = strtotime($value)) { - $value = time(); - } - - $values[$name] = $value; - break; - // don't try to set the guid case 'guid': unset($values['guid']); @@ -118,6 +109,15 @@ foreach ($values as $name => $default) { } } +// build publish_date +$publish_month = get_input('publish_month'); +$publish_day = get_input('publish_day'); +$publish_year = get_input('publish_year'); +$publish_hour = get_input('publish_hour'); +$publish_minute = get_input('publish_minute'); +$datetime = "$publish_year-$publish_month-$publish_day $publish_hour:$publish_minute:00"; +$values['publish_date'] = date('U', strtotime($datetime)); + // assign values to the entity, stopping on error. if (!$error) { foreach ($values as $name => $value) { -- cgit v1.2.3