Index: trunk/wp-content/plugins/xpressme/include/custom_functions.php
===================================================================
--- trunk/wp-content/plugins/xpressme/include/custom_functions.php	(revision 158)
+++ trunk/wp-content/plugins/xpressme/include/custom_functions.php	(revision 163)
@@ -389,4 +389,5 @@
 	
 	$output = __('Main', 'xpressme');
+	$output = '';
 	if (is_category())
 		$output = sprintf(__('Archive for the &#8216;%s&#8217; Category', 'xpressme'), single_cat_title('', false));
@@ -406,7 +407,12 @@
 		$output = sprintf(__('Search Results of word &#8216;%s&#8217;', 'xpressme'), get_search_query());
 	
-	if (!empty($selected_author))
-	$output = sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
-		
+	if (!empty($selected_author)){
+		$selected_id = xpress_selected_author_id(false);
+//		$output = get_avatar($selected_id,$size = '32') . sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
+		if (empty($output))
+			$output = sprintf(__('Article of %s', 'xpressme'), $selected_author) ;
+		else
+			$output = sprintf(__('Article of %s', 'xpressme'), $selected_author) . ' - ' . $output;
+	}	
 	if ($display) 
 		echo $output;
