Index: trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php
===================================================================
--- trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php	(revision 125)
+++ trunk/wp-content/themes/xpress_default/blocks/authors_block_theme.php	(revision 126)
@@ -10,23 +10,20 @@
 	$mydirpath = get_xpress_dir_path();
 	
+	$param = array(
+		'optioncount' => $optioncount, 
+		'exclude_admin' => $exclude_admin, 
+		'format' => $format, 
+		'show_fullname' => $show_fullname, 
+		'hide_empty' => $hide_empty,
+		'feed' => '',
+		'feed_image' => ''
+	);
 	ob_start();
-//		wp_list_authors($optioncount, $exclude_admin, $show_fullname,$hide_empty);
-		list_authors($optioncount, $exclude_admin, $show_fullname,$hide_empty);
-		$output=ob_get_contents() ;
+		wp_list_authors($param);
+		$list_authors = ob_get_contents() ;
 	ob_end_clean();
-	$output = preg_replace('/<li>/', '' ,$output); // "<li>" is deleted. 
-	$output = preg_replace('/<\/li>/', '|' ,$output); // "</li>" replace "|". 
-	$output = preg_replace('/\|$/', '' ,$output); // "|" at the end of line is deleted. 
-
-	$authors = explode('|',$output);
-	$item_no = 0;
-	foreach ($authors as $author){
-		$row_data = array(
-			'author'		=> $author
-		);
-		$block['contents']['item'.$item_no] = $row_data;
-		$item_no++;
-	}
-	$block['data_count'] = $item_no;
+	$output = "<ul>\n" . $list_authors . "\n</ul>\n";
+	
+	$block['authors'] = $output;
 	
 	return $block ;
