Index: /temp/branches/ec-cube-beta/html/campaign/default/index.php
===================================================================
--- /temp/branches/ec-cube-beta/html/campaign/default/index.php	(revision 11045)
+++ /temp/branches/ec-cube-beta/html/campaign/default/index.php	(revision 11047)
@@ -88,8 +88,11 @@
 	
 	// where¶çÀ¸À®
-	$where = "IN ( ?";
+	$count = 0;
+	$where = "IN (";
 	foreach($arrProductIds as $key =>$val) {
-		$where .= ",?";
+		if($count > 0) $where .= ",";
+		$where .= "?";
 		$arrval[] = $val;
+		$count++;
 	}
 	$where .= ")";
