Index: wp-includes/js/tinymce/plugins/wplink/css/wplink.dev.css
===================================================================
--- wp-includes/js/tinymce/plugins/wplink/css/wplink.dev.css	(révision 16602)
+++ wp-includes/js/tinymce/plugins/wplink/css/wplink.dev.css	(copie de travail)
@@ -81,6 +81,12 @@
 	font-size: 11px;
 	float: right;
 }
+#wp-link .item-parent {
+	color: #666;
+	font-size: 10px;
+
+	display: block;
+}
 #search-results {
 	display: none;
 }
@@ -105,4 +111,4 @@
 #wp-link-update {
 	line-height: 23px;
 	float: right;
-}
\ No newline at end of file
+}
Index: wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js
===================================================================
--- wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js	(révision 16602)
+++ wp-includes/js/tinymce/plugins/wplink/js/wplink.dev.js	(copie de travail)
@@ -356,7 +356,12 @@
 					list += '<input type="hidden" class="item-permalink" value="' + this['permalink'] + '" />';
 					list += '<span class="item-title">';
 					list += this['title'] ? this['title'] : '<em>'+ wpLinkL10n.untitled + '</em>';
-					list += '</span><span class="item-info">' + this['info'] + '</span></li>';
+					list += '</span>';
+					
+					list +=	'<span class="item-info">' + this['info'] + '</span>';
+					if( this['parent'] )
+						list +=	'<span class="item-parent">' + this['parent'] + '</span>';
+					list += '</li>';
 					alt = ! alt;
 				});
 			}
@@ -419,4 +424,4 @@
 	});
 
 	$(document).ready( wpLink.init );
-})(jQuery);
\ No newline at end of file
+})(jQuery);
Index: wp-admin/includes/internal-linking.php
===================================================================
--- wp-admin/includes/internal-linking.php	(révision 16602)
+++ wp-admin/includes/internal-linking.php	(copie de travail)
@@ -52,11 +52,18 @@
 		else
 			$info = $pts[ $post->post_type ]->labels->singular_name;
 
+		$parent = '';			
+		if($post->post_parent) {
+			$parent_post = get_post($post->post_parent);
+			$parent = __('Parent:') . ' ' . esc_html( strip_tags($parent_post->post_title) );
+		}
+			
 		$results[] = array(
 			'ID' => $post->ID,
 			'title' => esc_html( strip_tags($post->post_title) ),
 			'permalink' => get_permalink( $post->ID ),
 			'info' => $info,
+			'parent' => $parent
 		);
 	}
 
@@ -119,4 +126,4 @@
 </form>
 <?php 
 }
-?>
\ No newline at end of file
+?>
