Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1210)
+++ branches/2.8.x/CHANGELOG	(revision 1211)
@@ -11,6 +11,9 @@
 ! = Update/Change
 
 ------------------------------------- 2.8.1 -------------------------------------
+12-Dez-2009 Dietrich Roland Pehlke (Aldus)
+#	Bugfix inside "search_modext.php" to avoid warings if the search found
+	a page last modified by a user witch has been deleted. (ticket #863)
 03-Dez-2009 Dietmar Woellbrink (Luisehahne)
 !	Ticket #890 fixed visability proprty uses non valid value 'none' 
 03-Dez-2009 Dietmar Woellbrink (Luisehahne)
Index: branches/2.8.x/wb/search/search_modext.php
===================================================================
--- branches/2.8.x/wb/search/search_modext.php	(revision 1210)
+++ branches/2.8.x/wb/search/search_modext.php	(revision 1211)
@@ -52,7 +52,7 @@
 // make username and displayname for "last modified by... on ..."-string
 function get_page_modified_by($page_modified_by, $users) {
 	global $TEXT;
-	if($page_modified_by > 0) {
+	if ( ($page_modified_by > 0) && (count($users) > $page_modified_by) ) {
 			$username = $users[$page_modified_by]['username'];
 			$displayname = $users[$page_modified_by]['display_name'];
 		} else {
