From 30601d05a0dce6bbe1a51955c71f80042c9c150b Mon Sep 17 00:00:00 2001 From: mikelittle Date: Thu, 30 Oct 2003 01:54:05 +0000 Subject: [PATCH] Fix for edit timestamp of comments. git-svn-id: http://svn.automattic.com/wordpress/trunk@496 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/b2edit.php | 2 +- wp-admin/wp-post.php | 27 +++++++++++++++------------ 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/wp-admin/b2edit.php b/wp-admin/b2edit.php index 7de319ed1..16f22f573 100644 --- a/wp-admin/b2edit.php +++ b/wp-admin/b2edit.php @@ -406,7 +406,7 @@ switch($action) { $hh = ($hh > 23) ? $hh - 24 : $hh; $mn = ($mn > 59) ? $mn - 60 : $mn; $ss = ($ss > 59) ? $ss - 60 : $ss; - $datemodif = ", comment_date = 'aa-$mm-$jj $hh:$mn:$ss'"; + $datemodif = ", comment_date = '$aa-$mm-$jj $hh:$mn:$ss'"; } else { $datemodif = ''; } diff --git a/wp-admin/wp-post.php b/wp-admin/wp-post.php index 7e4951534..1803b59d2 100644 --- a/wp-admin/wp-post.php +++ b/wp-admin/wp-post.php @@ -150,7 +150,7 @@ switch($action) { break; case 'edit': - $title = 'Edit'; + $title = 'Edit'; $standalone = 0; require_once('b2header.php'); @@ -323,7 +323,7 @@ switch($action) { break; case 'editcomment': - $title = 'Edit Comment'; + $title = 'Edit Comment'; $standalone = 0; require_once ('b2header.php'); @@ -346,18 +346,18 @@ switch($action) { $standalone = 1; require_once('./b2header.php'); - + if ($user_level == 0) die ('Cheatin’ uh?'); - + $comment = $HTTP_GET_VARS['comment']; $p = $HTTP_GET_VARS['p']; $commentdata = get_commentdata($comment) or die('Oops, no comment with this ID. Go back!'); - + $result = $wpdb->query("DELETE FROM $tablecomments WHERE comment_ID=$comment"); - + header ('Location: ' . $HTTP_SERVER_VARS['HTTP_REFERER']); - + break; case 'editedcomment': @@ -388,7 +388,7 @@ switch($action) { $hh = ($hh > 23) ? $hh - 24 : $hh; $mn = ($mn > 59) ? $mn - 60 : $mn; $ss = ($ss > 59) ? $ss - 60 : $ss; - $datemodif = ", comment_date = 'aa-$mm-$jj $hh:$mn:$ss'"; + $datemodif = ", comment_date = '$aa-$mm-$jj $hh:$mn:$ss'"; } else { $datemodif = ''; } @@ -403,7 +403,7 @@ switch($action) { comment_author_url = '$newcomment_author_url'".$datemodif." WHERE comment_ID = $comment_ID" ); - + $referredby = $HTTP_POST_VARS['referredby']; if (!empty($referredby)) header('Location: ' . $referredby); else header ("Location: edit.php?p=$comment_post_ID&c=1#comments"); @@ -428,8 +428,11 @@ switch($action) { post_title = stripslashes($draft->post_title); if ($draft->post_title == '') $draft->post_title = 'post-'.$draft->ID; + if (0 != $i) + echo ', '; + $draft->post_title = stripslashes($draft->post_title); + if ($draft->post_title == '') + $draft->post_title = 'post-'.$draft->ID; echo "$draft->post_title"; ++$i; } @@ -459,7 +462,7 @@ switch($action) { */