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 57)
+++ trunk/wp-content/themes/xpress_default/blocks/recent_posts_content_block_theme.php	(revision 58)
@@ -16,7 +16,7 @@
 	$call_url = $_SERVER['REQUEST_URI'];
 	
+	if(empty($tag_select)) $tag_where = ''; else $tag_where = "tag='$tag_select'&";
 	
-	
-	global $wpdb;
+	global $wpdb,$wp_query;
 	$block = array();
 	$item_no = 0;	
@@ -24,9 +24,9 @@
 		$wp_query->in_the_loop = true;		//for use the_tags() in multi lopp 
 		if (array_search(0,$selected)===0) {
-			$r = new WP_Query("showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish");
+			$r = new WP_Query($tag_where ."showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish");
 
 		} else {
 			$cat_id = implode(',',$selected);
-			$r = new WP_Query("cat=$cat_id&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish");
+			$r = new WP_Query($tag_where . "cat=$cat_id&showposts=$disp_count&what_to_show=posts&nopaging=0&post_status=publish");
 		}
 		while($r->have_posts()){			
@@ -58,5 +58,5 @@
 			
 			ob_start();
-				the_tags(__('Tags').': ',' &bull; ','');
+				the_tags(__('Tags:', 'kubrick') . ' ',' &bull; ','');
 				$tags = ob_get_contents();
 			ob_end_clean();
@@ -99,5 +99,5 @@
 			$trackback_url = trackback_url(false);
 			$post_viwes = xpress_post_views_count($post_id,'views: %d' ,false);
-			if (empty($tags)) $tags = __('Not Tag');
+//			if (empty($tags)) $tags = __('Not Tag');
 
 			$row_data = array(
