Index: branches/Ver2.0/xpressme_integration_kit/class/check_blocks_class.php
===================================================================
--- branches/Ver2.0/xpressme_integration_kit/class/check_blocks_class.php	(revision 261)
+++ branches/Ver2.0/xpressme_integration_kit/class/check_blocks_class.php	(revision 301)
@@ -217,8 +217,18 @@
 		$option_arr_1 = explode( '|', $info['options'] );
 		$option_arr_2 = explode( '|', $block_obj->getVar('options', 'n') );
-
-		if ( count($option_arr_1) != count($option_arr_2) )
-		{
-			$this->_err( $name.': options count unmatch' );
+		
+		$excludes_block = array('widget_block.php','popular_posts_block.php','recent_comments_block.php','recent_posts_content_block.php','recent_posts_list_block.php');
+		
+		if (in_array($info['file'],$excludes_block)){
+			if ( count($option_arr_1) > count($option_arr_2) )
+			{
+				$this->_err( $name.': options count unmatch' );
+			}
+
+		} else {
+			if ( count($option_arr_1) != count($option_arr_2) )
+			{
+				$this->_err( $name.': options count unmatch' );
+			}
 		}
 	}
