Index: simple_review.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simple_review/simple_review.module,v
retrieving revision 1.6
diff -u -p -r1.6 simple_review.module
--- simple_review.module	10 Sep 2007 20:07:27 -0000	1.6
+++ simple_review.module	11 Sep 2007 23:58:06 -0000
@@ -13,6 +13,10 @@
 
 /**
  * Implementation of hook_form_alter().
+ * 
+ * Hint: To alter or remove the default name for anonymous users in the comment
+ *   form, go to admin/settings/site-information and configure the displayed
+ *   name for not authenticated users.
  */
 function simple_review_form_alter($form_id, &$form) {
   if ($form_id == 'comment_form') {
@@ -181,13 +185,18 @@ function simple_review_already_reviewed(
  *
  * Stub function needs to be copied along with comment.tpl.php to your theme.
  *
+ * @see theme_comment() in comment.module
  * @ingroup themable
  */
 function yourtheme_comment($comment, $links = array()) {
-  // Remove reply link first
+  // Remove reply link
   if (isset($links)) {
     unset($links['comment_reply']);
   }
+  // Remove 'new' marker on preview
+  if ($comment->op == $comment->preview) {
+    $comment->new = 0;
+  }
 
   return _phptemplate_callback('comment', array(
     'author'    => theme('username', $comment),
