? 296115_7.patch
? 310212_0.patch
? 696_access_log_filter_28.patch
? commentApproveBeforeReply.patch
? field_prefix_suffix_for_all2.patch
? field_prefix_suffix_for_all3.patch
? move_preprocess_node_block.patch
? node_signatures_1.patch
? op_filter.patch
? user.module-D7_1.patch
? user.module-D7_2.patch
? user.module-D7_4.patch
? user.module-D7_5.patch
? user_load_multiple_61.patch
? includes/.form.inc.swp
? includes/.theme.inc.swp
? sites/all/modules/cck
? sites/all/modules/drush
? sites/default/files
? sites/default/settings.php
Index: modules/comment/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v
retrieving revision 1.700
diff -u -p -r1.700 comment.module
--- modules/comment/comment.module	17 Mar 2009 12:41:54 -0000	1.700
+++ modules/comment/comment.module	18 Mar 2009 08:06:21 -0000
@@ -986,11 +986,14 @@ function comment_links($comment, $return
         'title' => t('edit'),
         'href' => "comment/edit/$comment->cid"
       );
-      $links['comment_reply'] = array(
-        'title' => t('reply'),
-        'href' => "comment/reply/$comment->nid/$comment->cid"
-      );
-      if ($comment->status == COMMENT_NOT_PUBLISHED) {
+      if ($comment->status == COMMENT_PUBLISHED) {
+        $links['comment_reply'] = array(
+          'title' => t('reply'),
+          'href' => "comment/reply/$comment->nid/$comment->cid",
+          'options' => array('style' => 'font-weight:bold')
+        );
+      }
+      else {
         $links['comment_approve'] = array(
           'title' => t('approve'),
           'href' => "comment/approve/$comment->cid"
