Index: /trunk/blocks/popular_posts_block.php
===================================================================
--- /trunk/blocks/popular_posts_block.php	(revision 141)
+++ /trunk/blocks/popular_posts_block.php	(revision 142)
@@ -20,6 +20,9 @@
 		$disp_count = empty( $options[2] ) ? '10' : $options[2] ;
 		$show_month_range = empty( $options[3] ) ? '0' : $options[3] ;
-		$tag_select = $options[4] ;
-		$selected = array_slice($options, 5); // get allowed cats
+		$date_format = empty( $options[4] ) ? '' : $options[4] ;
+		$time_format = empty( $options[5] ) ? '' : $options[5] ;
+		$tag_select = $options[6] ;
+		$selected = array_slice($options, 7); // get allowed cats
+
 		$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
 		
@@ -27,14 +30,15 @@
 
 		$form  = "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />\n";
-	    $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />";
-		$form .= "<br />";
+	    $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />\n";
+		$form .= "<br />\n";
 		$form .= _MB_XPRESS_COUNT .": <input type='text' name='options[2]' value='" . $disp_count . "' /><br />\n";
 		$form .= _MB_MONTH_RANGE .": <input type='text' name='options[3]' value='" . $show_month_range . "' /><br />\n";
+		$form .= _MB_XPRESS_DATE_FORMAT .": <input type='text' name='options[4]' value='" . $date_format . "' /><br />\n";
+		$form .= _MB_XPRESS_TIME_FORMAT .": <input type='text' name='options[5]' value='" . $time_format . "' /><br />\n";
 		$form .= "<br />\n";
-
-		$form .= _MB_XPRESS_TAGS_SELECT .": <input type='text' name='options[4]' value='" . $tag_select . "' /><br />\n";	
+		$form .= _MB_XPRESS_TAGS_SELECT .": <input type='text' name='options[6]' value='" . $tag_select . "' /><br />\n";	
 	    $form .= _MB_XPRESS_CATS_SELECT ."<br />\n";
 	    $isAll = (count($selected)==0||empty($selected[0]))?true:false;
-	    $form .= "<br />&nbsp;&nbsp;<select name=\"options[]\" multiple=\"multiple\">";
+	    $form .= "&nbsp;&nbsp;<select name=\"options[]\" multiple=\"multiple\">";
 	    $form .= "<option value=\"0\" ";
 	    if ($isAll) $form .= " selected=\"selected\"";
Index: /trunk/blocks/recent_comments_block.php
===================================================================
--- /trunk/blocks/recent_comments_block.php	(revision 141)
+++ /trunk/blocks/recent_comments_block.php	(revision 142)
@@ -21,17 +21,23 @@
 		$disp_count = empty( $options[2] ) ? '10' : $options[2] ;
 		$disp_length = empty( $options[3] ) ? '30' : $options[3] ;
-	    $selected = array_slice($options,4); // get allowed cats
+		$date_format = empty( $options[4] ) ? '' : $options[4] ;
+		$time_format = empty( $options[5] ) ? '' : $options[5] ;
+	    $selected = array_slice($options,6); // get allowed cats
+
 		$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
 
 		require_once(XOOPS_ROOT_PATH.'/modules/'.$mydirname.'/blocks/block_common.php');
 		
-		$form  = "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />";
-	    $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />";
+		$form  = "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />\n";
+	    $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />\n";
 		$form .= "<br />";
-		$form .= _MB_XPRESS_COUNT .": <input type='text' name='options[2]' value='" . $disp_count . "' /><br />";
-		$form .= _MB_XPRESS_LENGTH .": <input type='text' name='options[3]' value='" . $disp_length . "' />";
-	    $form .= "<br /><br />" . _MB_XPRESS_COM_TYPE ;
+		$form .= _MB_XPRESS_COUNT .": <input type='text' name='options[2]' value='" . $disp_count . "' /><br />\n";
+		$form .= _MB_XPRESS_LENGTH .": <input type='text' name='options[3]' value='" . $disp_length . "' /><br />\n";
+		$form .= _MB_XPRESS_DATE_FORMAT .": <input type='text' name='options[4]' value='" . $date_format . "' /><br />\n";
+		$form .= _MB_XPRESS_TIME_FORMAT .": <input type='text' name='options[5]' value='" . $time_format . "' /><br />\n";
+	    $form .= "<br />\n";
+	    $form .= _MB_XPRESS_COM_TYPE . "<br />\n";
 	    $isAll = (count($selected)==0||empty($selected[0]))?true:false;
-	    $form .= "<br />&nbsp;&nbsp;<select name=\"options[]\" multiple=\"multiple\">";
+	    $form .= "&nbsp;&nbsp;<select name=\"options[]\" multiple=\"multiple\">";
 		    $form .= "<option value=\"0\" ";
 		    if ($isAll) $form .= " selected=\"selected\"";
Index: /trunk/blocks/recent_posts_content_block.php
===================================================================
--- /trunk/blocks/recent_posts_content_block.php	(revision 141)
+++ /trunk/blocks/recent_posts_content_block.php	(revision 142)
@@ -22,6 +22,8 @@
 		$except = empty( $options[3] ) ? false : true ;
 		$except_size =  ($options[4])?intval($options[4]):100;
-		$tag_select = $options[5] ;
-	    $selected = array_slice($options,6); // get allowed cats
+		$date_format = empty( $options[5] ) ? '' : $options[5] ;
+		$time_format = empty( $options[6] ) ? '' : $options[6] ;
+		$tag_select = $options[7] ;
+	    $selected = array_slice($options,8); // get allowed cats
 
 		$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
@@ -35,7 +37,9 @@
 		$form .= yes_no_radio_option('options[3]', _MB_XPRESS_P_EXCEPT , $except) . "<br />\n";
 		$form .= _MB_XPRESS_P_EXCEPT_SIZE .": <input type='text' name='options[4]' value='" . $except_size . "' /><br />\n";
+		$form .= _MB_XPRESS_DATE_FORMAT .": <input type='text' name='options[5]' value='" . $date_format . "' /><br />\n";
+		$form .= _MB_XPRESS_TIME_FORMAT .": <input type='text' name='options[6]' value='" . $time_format . "' /><br />\n";
 		
 		$form .= "<br />\n";
-		$form .= _MB_XPRESS_TAGS_SELECT .": <input type='text' name='options[5]' value='" . $tag_select . "' /><br />\n";
+		$form .= _MB_XPRESS_TAGS_SELECT .": <input type='text' name='options[7]' value='" . $tag_select . "' /><br />\n";
 	    $form .= _MB_XPRESS_CATS_SELECT ."<br />\n";
 	    $isAll = (count($selected)==0||empty($selected[0]))?true:false;
Index: /trunk/blocks/recent_posts_list_block.php
===================================================================
--- /trunk/blocks/recent_posts_list_block.php	(revision 141)
+++ /trunk/blocks/recent_posts_list_block.php	(revision 142)
@@ -21,6 +21,9 @@
 		$disp_red = empty( $options[3] ) ? '1' : $options[3] ;
 		$disp_green = empty( $options[4] ) ? '7' : $options[4] ;
-		$tag_select = $options[5] ;
-		$selected = array_slice($options,6); // get allowed cats
+		$date_format = empty( $options[5] ) ? '' : $options[5] ;
+		$time_format = empty( $options[6] ) ? '' : $options[6] ;
+		$tag_select = $options[7] ;
+		$selected = array_slice($options,8); // get allowed cats
+
 		$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
 		
@@ -28,12 +31,14 @@
 
 		$form  = "MyDirectory <input type='text' name='options[0]' value='" . $mydirname . "' /><br />\n";
-	    $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />";
-		$form .= "<br />";	
+	    $form .= "<input type='hidden' name='options[1]' id='this_template' value='".htmlspecialchars($this_template,ENT_QUOTES)."' /><br />\n";
+		$form .= "<br />\n";	
 		$form .= _MB_XPRESS_COUNT .": <input type='text' name='options[2]' value='" . $disp_count . "' /><br />\n";
 		$form .= _MB_XPRESS_REDNEW_DAYS .": <input type='text' name='options[3]' value='" . $disp_red . "' /><br />\n";
 		$form .= _MB_XPRESS_GREENNEW_DAYS .": <input type='text' name='options[4]' value='" . $disp_green . "' /><br />\n";
+		$form .= _MB_XPRESS_DATE_FORMAT .": <input type='text' name='options[5]' value='" . $date_format . "' /><br />\n";
+		$form .= _MB_XPRESS_TIME_FORMAT .": <input type='text' name='options[6]' value='" . $time_format . "' /><br />\n";
 		
 	    $form .= "<br />\n";
-		$form .= _MB_XPRESS_TAGS_SELECT .": <input type='text' name='options[5]' value='" . $tag_select . "' /><br />\n";
+		$form .= _MB_XPRESS_TAGS_SELECT .": <input type='text' name='options[7]' value='" . $tag_select . "' /><br />\n";
 	    $form .= _MB_XPRESS_CATS_SELECT ."<br />\n";
 	    $isAll = (count($selected)==0||empty($selected[0]))?true:false;
Index: /trunk/language/ja_utf8/blocks.php
===================================================================
--- /trunk/language/ja_utf8/blocks.php	(revision 141)
+++ /trunk/language/ja_utf8/blocks.php	(revision 142)
@@ -22,4 +22,5 @@
 	define("_MB_XPRESS_SHOW_DATE","日付を表示する");
 	define("_MB_XPRESS_DATE_FORMAT","日付のフォーマット(空白の場合WordPressでの設定が適用されます)");
+	define("_MB_XPRESS_TIME_FORMAT","時刻のフォーマット(空白の場合WordPressでの設定が適用されます)");
 	define("_MB_XPRESS_FLAT","フラット");
 	define("_MB_XPRESS_LIST","リスト");
Index: /trunk/wp-content/themes/xpress_default/blocks/popular_posts_block_theme.php
===================================================================
--- /trunk/wp-content/themes/xpress_default/blocks/popular_posts_block_theme.php	(revision 141)
+++ /trunk/wp-content/themes/xpress_default/blocks/popular_posts_block_theme.php	(revision 142)
@@ -6,8 +6,13 @@
 	$disp_count = empty( $options[2] ) ? '10' : $options[2] ;
 	$show_month_range = empty( $options[3] ) ? '0' : $options[3] ;
-	$tag_select = $options[4] ;
-	$selected = array_slice($options,5); // get allowed cats
+	$date_format = empty( $options[4] ) ? '' : $options[4] ;
+	$time_format = empty( $options[5] ) ? '' : $options[5] ;
+	$tag_select = $options[6] ;
+	$selected = array_slice($options, 7); // get allowed cats
+
 	$mydirpath = get_xpress_dir_path();
 	
+	if (empty($date_format)) $date_format = get_settings('date_format');
+	if (empty($time_format)) $time_format = get_settings('time_format');
 	if (array_search(0,$selected)===0) {
 		$cat_select = false;
@@ -112,20 +117,20 @@
 			
 			ob_start();
-				the_modified_date(get_settings('date_format'));
+				the_modified_date($date_format);
 				$post_modified_date = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_modified_date(get_settings('time_format'));
+				the_modified_date($time_format);
 				$post_modified_time = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_time(get_settings('date_format'));
+				the_time($date_format);
 				$post_date = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_time(get_settings('time_format'));
+				the_time($time_format);
 				$post_time = ob_get_contents();
 			ob_end_clean();
Index: /trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php
===================================================================
--- /trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php	(revision 141)
+++ /trunk/wp-content/themes/xpress_default/blocks/recent_comments_block_theme.php	(revision 142)
@@ -8,9 +8,12 @@
 	$disp_count = empty( $options[2] ) ? '10' : $options[2] ;
 	$disp_length = empty( $options[3] ) ? '30' : $options[3] ;
-	$selected = array_slice($options,4); // get allowed cats
-//	$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
+	$date_format = empty( $options[4] ) ? '' : $options[4] ;
+	$time_format = empty( $options[5] ) ? '' : $options[5] ;
+    $selected = array_slice($options,6); // get allowed cats
+
 	$mydirpath = get_xpress_dir_path();
-	$this_url = '/modules/'. $mydirname;
-	$call_url = $_SERVER['REQUEST_URI'];
+	
+	if (empty($date_format)) $date_format = get_settings('date_format');
+	if (empty($time_format)) $time_format = get_settings('time_format');
 	
 	$disp_all = in_array('0',$selected);
@@ -47,5 +50,4 @@
 
 		$comments = $wpdb->get_results($comment_sql);
-		$format = get_settings('date_format') . ' ' . get_settings('time_format');				
 		
 		if ( $comments ) {
@@ -74,6 +76,6 @@
 					'comment_ID' 		=> $comment->comment_ID ,
 					'comment_post_ID'	=> $comment->comment_post_ID ,
-					'comment_date' 		=> date(get_settings('date_format'),$comment->comment_unix_time) ,
-					'comment_date_time' => date(get_settings('date_format') . ' ' . get_settings('time_format'),$comment->comment_unix_time) ,
+					'comment_date' 		=> date($date_format,$comment->comment_unix_time) ,
+					'comment_date_time' => date($date_format . ' ' . $time_format,$comment->comment_unix_time) ,
 					'comment_content' 	=> $comment_content ,
 					'comment_excerpt' 	=> $comment_excerpt ,
Index: /trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php
===================================================================
--- /trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php	(revision 141)
+++ /trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php	(revision 142)
@@ -9,12 +9,13 @@
 	$except = empty( $options[3] ) ? false : true ;
 	$except_size =  ($options[4])?intval($options[4]):100;
-	$tag_select = $options[5] ;
-    $selected = array_slice($options,6); // get allowed cats
-//	$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
+	$date_format = empty( $options[5] ) ? '' : $options[5] ;
+	$time_format = empty( $options[6] ) ? '' : $options[6] ;
+	$tag_select = $options[7] ;
+    $selected = array_slice($options,8); // get allowed cats
+
 	$mydirpath = get_xpress_dir_path();
 	
-	$this_url = '/modules/'. $mydirname;
-	$call_url = $_SERVER['REQUEST_URI'];
-	
+	if (empty($date_format)) $date_format = get_settings('date_format');
+	if (empty($time_format)) $time_format = get_settings('time_format');
 	if(empty($tag_select)) $tag_where = ''; else $tag_where = "tag='$tag_select'&";
 	
@@ -70,20 +71,20 @@
 
 			ob_start();
-				the_modified_date(get_settings('date_format'));
+				the_modified_date($date_format);
 				$post_modified_date = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_modified_date(get_settings('time_format'));
+				the_modified_date($time_format);
 				$post_modified_time = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_time(get_settings('date_format'));
+				the_time($date_format);
 				$post_date = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_time(get_settings('time_format'));
+				the_time($time_format);
 				$post_time = ob_get_contents();
 			ob_end_clean();
Index: /trunk/wp-content/themes/xpress_default/blocks/recent_posts_list_block_theme.php
===================================================================
--- /trunk/wp-content/themes/xpress_default/blocks/recent_posts_list_block_theme.php	(revision 141)
+++ /trunk/wp-content/themes/xpress_default/blocks/recent_posts_list_block_theme.php	(revision 142)
@@ -7,9 +7,13 @@
 	$disp_red = empty( $options[3] ) ? '1' : $options[3] ;
 	$disp_green = empty( $options[4] ) ? '7' : $options[4] ;
-	$tag_select = $options[5] ;
-	$selected = array_slice($options,6); // get allowed cats
-//	$mydirpath = XOOPS_ROOT_PATH . '/modules/' . $mydirname;
+	$date_format = empty( $options[5] ) ? '' : $options[5] ;
+	$time_format = empty( $options[6] ) ? '' : $options[6] ;
+	$tag_select = $options[7] ;
+	$selected = array_slice($options,8); // get allowed cats
+
 	$mydirpath = get_xpress_dir_path();
 
+	if (empty($date_format)) $date_format = get_settings('date_format');
+	if (empty($time_format)) $time_format = get_settings('time_format');
 	if(empty($tag_select)) $tag_where = ''; else $tag_where = "tag='$tag_select'&";
 	
@@ -59,20 +63,20 @@
 			
 			ob_start();
-				the_modified_date(get_settings('date_format'));
+				the_modified_date($date_format);
 				$post_modified_date = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_modified_date(get_settings('time_format'));
+				the_modified_date($time_format);
 				$post_modified_time = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_time(get_settings('date_format'));
+				the_time($date_format);
 				$post_date = ob_get_contents();
 			ob_end_clean();
 			
 			ob_start();
-				the_time(get_settings('time_format'));
+				the_time($time_format);
 				$post_time = ob_get_contents();
 			ob_end_clean();
Index: /trunk/xoops_version.php
===================================================================
--- /trunk/xoops_version.php	(revision 141)
+++ /trunk/xoops_version.php	(revision 142)
@@ -31,5 +31,5 @@
 $modversion['name'] = ucfirst($mydirname) . ' ' . constant('_MI_XPRESS_NAME') ;
 $modversion['description'] = constant( '_MI_XPRESS_DESC');
-$modversion['version'] = "0.18";
+$modversion['version'] = "0.19";
 $modversion['credits'] = "Wordpress DEV (http://wordpress.org/) XPressME DEV Toemon) (http://www.toemon.com) ;";
 $modversion['author'] = "toemon (http://www.toemon.com)";
@@ -40,5 +40,5 @@
 
 // status
-$modversion['codename'] = "r141";
+$modversion['codename'] = "r142";
 
 // onInstall, onUpdate, onUninstall
@@ -107,4 +107,49 @@
 $b_no =1;
 $modversion['blocks'][$b_no] = array(
+	'file' 			=> 'recent_posts_content_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_CONTENT') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_content_show" ,
+	'edit_func' 	=> "b_". $mydirname . "_content_edit" ,
+	'template'		=> '' ,
+	'options'		=> $mydirname. '||10|0|100||||0' ,
+	'can_clone'		=> true ,
+	'func_num'		=> $b_no,
+);
+$b_no++;
+$modversion['blocks'][$b_no] = array(
+	'file' 			=> 'recent_posts_list_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_POSTS') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_posts_show" ,
+	'edit_func' 	=> "b_". $mydirname . "_posts_edit" ,
+	'options'		=> $mydirname. '||10|1|7||||0' ,
+	'can_clone'		=> true ,
+	'func_num'		=> $b_no,	
+);
+$b_no++;
+$modversion['blocks'][$b_no] = array(
+	'file' 			=> 'popular_posts_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_POPULAR') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_popular_show" ,
+	'edit_func' 	=> "b_". $mydirname . "_popular_edit" ,
+	'options'		=> $mydirname. '||10|0||||0' ,
+	'can_clone'		=> true ,
+	'func_num'		=> $b_no,	
+);
+$b_no++;
+$modversion['blocks'][$b_no] = array(
+	'file' 			=> 'page_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_PAGE') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_page_show" ,
+	'edit_func' 	=> "b_". $mydirname . "_page_edit" ,
+	'options'		=> $mydirname. '||post_title|asc||0||0|0|none||1||' ,
+	'can_clone'		=> true ,
+	'func_num'		=> $b_no,
+);
+$b_no++;
+$modversion['blocks'][$b_no] = array(
 	'file' 			=> 'recent_comments_block.php' ,
 	'name' 			=> constant('_MI_XPRESS_BLOCK_COMMENTS') ,
@@ -113,30 +158,29 @@
 	'edit_func' 	=> "b_". $mydirname . "_comments_edit" ,
 	'template'		=> '' ,
-	'options'		=> $mydirname. '||10|30|0' ,
-	'can_clone'		=> true ,
-	'func_num'		=> $b_no,	
-);
-$b_no++;
-$modversion['blocks'][$b_no] = array(
-	'file' 			=> 'recent_posts_content_block.php' ,
-	'name' 			=> constant('_MI_XPRESS_BLOCK_CONTENT') ,
-	'description'	=> '' ,
-	'show_func' 	=> "b_". $mydirname . "_content_show" ,
-	'edit_func' 	=> "b_". $mydirname . "_content_edit" ,
-	'template'		=> '' ,
-	'options'		=> $mydirname. '||10|0|100||0' ,
-	'can_clone'		=> true ,
-	'func_num'		=> $b_no,
-);
-$b_no++;
-$modversion['blocks'][$b_no] = array(
-	'file' 			=> 'recent_posts_list_block.php' ,
-	'name' 			=> constant('_MI_XPRESS_BLOCK_POSTS') ,
-	'description'	=> '' ,
-	'show_func' 	=> "b_". $mydirname . "_posts_show" ,
-	'edit_func' 	=> "b_". $mydirname . "_posts_edit" ,
-	'options'		=> $mydirname. '||10|1|7||0' ,
-	'can_clone'		=> true ,
-	'func_num'		=> $b_no,	
+	'options'		=> $mydirname. '||10|30|||0' ,
+	'can_clone'		=> true ,
+	'func_num'		=> $b_no,	
+);
+$b_no++;
+$modversion['blocks'][$b_no] = array(
+	'file' 			=> 'sidebar_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_SIDEBAR') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_sidebar_show" ,
+	'edit_func' 	=> '' ,
+	'options'		=> '' ,
+	'can_clone'		=> false ,
+	'func_num'		=> $b_no,	
+);
+$b_no++;
+$modversion['blocks'][$b_no] = array(
+	'file' 			=> 'search_block.php' ,
+	'name' 			=> constant('_MI_XPRESS_BLOCK_SEARCH') ,
+	'description'	=> '' ,
+	'show_func' 	=> "b_". $mydirname . "_search_show" ,
+	'edit_func' 	=> "b_". $mydirname . "_search_edit" ,
+	'options'		=> $mydirname. '||18' ,
+	'can_clone'		=> false ,
+	'func_num'		=> $b_no ,	
 );
 $b_no++;
@@ -153,15 +197,4 @@
 $b_no++;
 $modversion['blocks'][$b_no] = array(
-	'file' 			=> 'popular_posts_block.php' ,
-	'name' 			=> constant('_MI_XPRESS_BLOCK_POPULAR') ,
-	'description'	=> '' ,
-	'show_func' 	=> "b_". $mydirname . "_popular_show" ,
-	'edit_func' 	=> "b_". $mydirname . "_popular_edit" ,
-	'options'		=> $mydirname. '||10|0||0' ,
-	'can_clone'		=> true ,
-	'func_num'		=> $b_no,	
-);
-$b_no++;
-$modversion['blocks'][$b_no] = array(
 	'file' 			=> 'archives_block.php' ,
 	'name' 			=> constant('_MI_XPRESS_BLOCK_ARCHIVE') ,
@@ -186,26 +219,4 @@
 $b_no++;
 $modversion['blocks'][$b_no] = array(
-	'file' 			=> 'page_block.php' ,
-	'name' 			=> constant('_MI_XPRESS_BLOCK_PAGE') ,
-	'description'	=> '' ,
-	'show_func' 	=> "b_". $mydirname . "_page_show" ,
-	'edit_func' 	=> "b_". $mydirname . "_page_edit" ,
-	'options'		=> $mydirname. '||post_title|asc||0||0|0|none||1||' ,
-	'can_clone'		=> true ,
-	'func_num'		=> $b_no,
-);
-$b_no++;
-$modversion['blocks'][$b_no] = array(
-	'file' 			=> 'search_block.php' ,
-	'name' 			=> constant('_MI_XPRESS_BLOCK_SEARCH') ,
-	'description'	=> '' ,
-	'show_func' 	=> "b_". $mydirname . "_search_show" ,
-	'edit_func' 	=> "b_". $mydirname . "_search_edit" ,
-	'options'		=> $mydirname. '||18' ,
-	'can_clone'		=> false ,
-	'func_num'		=> $b_no ,	
-);
-$b_no++;
-$modversion['blocks'][$b_no] = array(
 	'file' 			=> 'tag_cloud_block.php' ,
 	'name' 			=> constant('_MI_XPRESS_BLOCK_TAG') ,
@@ -236,15 +247,4 @@
 	'edit_func' 	=> "b_". $mydirname . "_meta_edit" ,
 	'options'		=> $mydirname. '||1|1|1|1|1|1|1|1' ,
-	'can_clone'		=> false ,
-	'func_num'		=> $b_no,	
-);
-$b_no++;
-$modversion['blocks'][$b_no] = array(
-	'file' 			=> 'sidebar_block.php' ,
-	'name' 			=> constant('_MI_XPRESS_BLOCK_SIDEBAR') ,
-	'description'	=> '' ,
-	'show_func' 	=> "b_". $mydirname . "_sidebar_show" ,
-	'edit_func' 	=> '' ,
-	'options'		=> '' ,
 	'can_clone'		=> false ,
 	'func_num'		=> $b_no,	
