Index: trunk/templates/source/authors_block.html
===================================================================
--- trunk/templates/source/authors_block.html	(revision 125)
+++ trunk/templates/source/authors_block.html	(revision 126)
@@ -2,10 +2,5 @@
  	The template tag of the following list can be used. 
  		<{$block.err_message}> 					// When the block cannot be displayed, this outputs the reason. Please do not delete it.
-		<{$block.data_count}>					// The number of archives is displayed. 
-		<{$block.contents}>						// Data array of archives. 
-		// Examples of <{$block.contents}>
-		<{foreach from=$block.contents item=content}>	// Loop
-		<{$content.author}>						// the author name is displayed as a link to their posts. Optionally this tag displays each author's post count.
-		<{/foreach}>							// End of Loop
+		<{$block.authors}>						// Displays Authors from wp_list_authors() function
 ************************* End of usage ************************ *}>
 <{* Start Template *}>
@@ -14,11 +9,5 @@
 	<{$block.err_message}>
 	<div class="xpress_authors_block">
-		<ul>
-		<{foreach from=$block.contents item=content}>
-			<li>
-			<{$content.author}>
-			</li>
-		<{/foreach}>
-		</ul>
+		<{$block.authors}>
 	</div>
 </div>
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 ;
