--- modules/comment.module.orig	2006-01-24 21:02:44.000000000 +0800
+++ modules/comment.module	2006-01-24 21:04:14.000000000 +0800
@@ -1323,6 +1323,14 @@
       $form['admin']['status'] = array('#type' => 'radios', '#parents' => array('status'), '#title' => t('Status'), '#default_value' =>  $status, '#options' => array(t('Published'), t('Not published')), '#weight' => -1);
 
     }
+    else if ($edit['cid']) {
+      $author = (object)$edit;
+      $form['author'] = array(
+        '#type' => 'item',
+        '#title' => t('Author'),
+        '#value' => theme('username', $author)
+      );
+    }
     else {
       $form['_author'] = array('#type' => 'item', '#title' => t('Your name'), '#value' => theme('username', $user)
       );
