Index: wp-admin/edit-comments.php
===================================================================
--- wp-admin/edit-comments.php	(revision 8759)
+++ wp-admin/edit-comments.php	(working copy)
@@ -174,11 +174,11 @@
 
 <div class="alignleft">
 <select name="action">
-<option value="" selected><?php _e('Actions') ?></option>
+<option value="" selected="selected"><?php _e('Actions') ?></option>
 <?php if ( 'approved' == $comment_status ): ?>
 <option value="unapprove"><?php _e('Unapprove'); ?></option>
 <?php else : ?>
-<option value="approve"><?php _e('Approve'); ?>
+<option value="approve"><?php _e('Approve'); ?></option>
 <?php endif; ?>
 <?php if ( 'spam' != $comment_status ): ?>
 <option value="markspam"><?php _e('Mark as Spam'); ?></option>
@@ -263,4 +263,4 @@
 
 <?php
 wp_comment_reply('-1', true, 'detail');
-include('admin-footer.php'); ?>
\ No newline at end of file
+include('admin-footer.php'); ?>
Index: wp-admin/includes/template.php
===================================================================
--- wp-admin/includes/template.php	(revision 8759)
+++ wp-admin/includes/template.php	(working copy)
@@ -1034,7 +1034,7 @@
 		}
 
 		if ( 'spam' != $the_comment_status )
-			$actions['reply'] = ' | <a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',this);return false;" title="'.__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
+			$actions['reply'] = '<span class="hide-if-no-js"> | <a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$post->ID.'\',this);return false;" title="'.__('Reply to this comment').'" href="#">' . __('Reply') . '</a></span>';
 
 		$actions = apply_filters( 'comment_row_actions', $actions, $comment );
 
@@ -1078,7 +1078,6 @@
 	}
 ?>
 	<div id="replyerror" style="display:none;">
-	<img src="images/logo.gif" />
 	<h3 class="info-box-title"><?php _e('Comment Reply Error'); ?></h3>
 	<p id="replyerrtext"></p>
 	<p class="submit"><button id="close-button" onclick="commentReply.close();" class="button"><?php _e('Close'); ?></button></p>

