When I quick edit a comment and save, the post id, parent id, user id, ip address and author agent are wiped out. So all the comment info is erased. Using edit works but not quick edit.
]]>At first, thank you for useful plugin.
It would be great to add ability to edit commend date as additional field for this plugin. In this case date editing would be much easier than a standard WordPress facilities.
It’s very easy to implement it, you just can add additional row into table:
<tr>
<td class="textright">
<label for="comment_date">Comment date</label>
</td>
<td>
<input type="text" name="comment_date" id="comment_date" value="<?php echo esc_attr( $comment->comment_date ); ?>" size="40" />
</td>
</tr>
]]>