From c38dc8bab37905363e76cbec8a5951c03c3e8d93 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Thu, 25 Mar 2004 02:45:32 +0000 Subject: [PATCH] now storing emailed posts as localtime+gmt git-svn-id: https://develop.svn.wordpress.org/trunk@1004 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-mail.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wp-mail.php b/wp-mail.php index 82ec8e8d31..5e31c00e10 100644 --- a/wp-mail.php +++ b/wp-mail.php @@ -107,7 +107,8 @@ for ($iCount=1; $iCount<=$Count; $iCount++) { } $ddate_U = mktime($ddate_H, $ddate_i, $ddate_s, $ddate_m, $ddate_d, $ddate_Y); - $post_date = gmdate('Y-m-d H:i:s', $ddate_U); + $post_date = gmdate('Y-m-d H:i:s', $ddate_U + ($time_difference * 3600)); + $post_date_gmt = gmdate('Y-m-d H:i:s', $ddate_U); } } } @@ -226,9 +227,9 @@ for ($iCount=1; $iCount<=$Count; $iCount++) { $content = preg_replace("|\n([^\n])|", " $1", $content); $content = addslashes(trim($content)); if($flat > 500) { - $sql = "INSERT INTO $tableposts (post_author, post_date, post_content, post_title, post_category) VALUES ($post_author, '$post_date', '$content', '$post_title', $post_category)"; + $sql = "INSERT INTO $tableposts (post_author, post_date, post_date_gmt, post_content, post_title, post_category) VALUES ($post_author, '$post_date', '$post_date_gmt', '$content', '$post_title', $post_category)"; } else { - $sql = "INSERT INTO $tableposts (post_author, post_date, post_content, post_title, post_category, post_lat, post_lon) VALUES ($post_author, '$post_date', '$content', '$post_title', $post_category, $flat, $flon)"; + $sql = "INSERT INTO $tableposts (post_author, post_date, post_date_gmt, post_content, post_title, post_category, post_lat, post_lon) VALUES ($post_author, '$post_date', '$post_date_gmt', '$content', '$post_title', $post_category, $flat, $flon)"; } $result = $wpdb->query($sql); $post_ID = $wpdb->insert_id;