Index: trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/authors_block_theme.php
===================================================================
--- trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/authors_block_theme.php	(revision 283)
+++ trunk/xpressme_integration_kit/wp-content/themes/xpress_default/blocks/authors_block_theme.php	(revision 284)
@@ -4,8 +4,8 @@
 	$mydirname = empty( $options[0] ) ? 'xpress' : $options[0] ;
 	$this_template = empty( $options[1] ) ? 'db:'.$mydirname.'_block_authors.html' : trim( $options[1] );
-	$optioncount = empty( $options[2] ) ? false : true ;
-	$exclude_admin = empty( $options[3] ) ? false : true ;
-	$show_fullname = empty( $options[4] ) ? false : true ;
-	$hide_empty = empty( $options[5] ) ? false : true ;		
+	$optioncount = empty( $options[2] ) ? 0 : 1 ;
+	$exclude_admin = empty( $options[3] ) ? 0 : 1 ;
+	$show_fullname = empty( $options[4] ) ? 0 : 1 ;
+	$hide_empty = empty( $options[5] ) ? 0 : 1 ;		
 	$mydirpath = get_xpress_dir_path();
 	
@@ -19,6 +19,8 @@
 		'feed_image' => ''
 	);
+	$param_str = 'optioncount='. $optioncount . '&exclude_admin=' . $exclude_admin .'&format=' . $format . '&show_fullname='. $show_fullname . '&hide_empty=' . $hide_empty;
 	ob_start();
-		wp_list_authors($param);
+//		wp_list_authors($param);
+		wp_list_authors($param_str); //WP2011 wp_list_authors() used only parse_str()
 		$list_authors = ob_get_contents() ;
 	ob_end_clean();
