Index: edit-form-comment.php
===================================================================
--- edit-form-comment.php	(revision 31254)
+++ edit-form-comment.php	(working copy)
@@ -108,6 +108,27 @@
 <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>
+
+<?php
+$permalink = get_permalink( $comment->comment_post_ID );
+$comment_title = get_the_title( $comment->comment_post_ID );
+if ( ! empty( $permalink ) && ! empty( $comment_title ) ) : ?>
+	<div class="misc-pub-section misc-pub-response-to">
+		<?php _e( 'In response to' ); ?>:
+		<a href="<?php echo esc_url( $permalink ); ?>"><?php echo esc_html( $comment_title ); ?></a>
+	</div>
+<?php endif; ?>
+
+<?php
+$comment_author = get_comment_author( $comment->comment_parent );
+$comment_link = get_comment_link( $comment->comment_parent );
+if ( ! empty( $comment_author ) && ! empty( $comment_link ) ) : ?>
+	<div class="misc-pub-section misc-pub-reply-to">
+		<?php _e( 'In reply to' ); ?>:
+		<a href="<?php echo esc_url( $comment_link ); ?>"><?php echo esc_html( $comment_author ); ?></a>
+	</div>
+<?php endif; ?>
+
 </div> <!-- misc actions -->
 <div class="clear"></div>
 </div>
