From aeb2b5bf9fa6d53c9030be7a5301379d2b53026b Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 7 Apr 2008 17:19:43 +0000 Subject: [PATCH] Update timestamp when only the minute value is changed. fixes #6456 for trunk git-svn-id: http://svn.automattic.com/wordpress/trunk@7614 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/post.php b/wp-admin/includes/post.php index 84227bd53..ffc5b119e 100644 --- a/wp-admin/includes/post.php +++ b/wp-admin/includes/post.php @@ -288,7 +288,7 @@ function wp_write_post() { if (!isset( $_POST['ping_status'] )) $_POST['ping_status'] = 'closed'; - foreach ( array ('aa', 'mm', 'jj', 'hh', 'mm') as $timeunit ) { + foreach ( array ('aa', 'mm', 'jj', 'hh', 'mn') as $timeunit ) { if ( !empty( $_POST['hidden_' . $timeunit] ) && $_POST['hidden_' . $timeunit] != $_POST[$timeunit] ) { $_POST['edit_date'] = '1'; break;