Index: wp-admin/edit-form-comment.php
===================================================================
--- wp-admin/edit-form-comment.php	(revision 27342)
+++ wp-admin/edit-form-comment.php	(working copy)
@@ -107,6 +107,29 @@
 <span id="timestamp"><?php printf($stamp, $date); ?></span>&nbsp;<a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a>
 <div id='timestampdiv' class='hide-if-js'><?php touch_time(('editcomment' == $action), 0); ?></div>
 </div>
+
+<div class="misc-pub-section misc-pub-response-to">
+	<?php
+	$permalink = get_permalink( $comment->comment_post_ID );
+	if ( ! empty( $permalink ) ) { 
+		_e( 'In response to' ); ?>: 
+		<a href="<?php echo esc_url( $permalink ); ?>"><?php echo esc_html( get_the_title( $comment->comment_post_ID ) ); ?></a> 
+		<?php
+	}
+	?>
+</div>
+
+<div class="misc-pub-section misc-pub-reply-to">
+	<?php
+	$author = get_comment_author( $comment->comment_parent );
+	if ( ! empty( $author ) ) {
+ 		 _e( 'In reply to' ); ?>:
+ 		 <a href="<?php echo esc_url( get_comment_link( $comment->comment_parent ) ); ?>"><?php echo esc_html( $author ); ?></a> 
+ 		 <?php
+ 	}
+ 	?>
+</div>
+
 </div> <!-- misc actions -->
 <div class="clear"></div>
 </div>
