Index: /branches/comu-ver2/data/include/module.inc
===================================================================
--- /branches/comu-ver2/data/include/module.inc	(revision 17605)
+++ /branches/comu-ver2/data/include/module.inc	(revision 17670)
@@ -45,10 +45,12 @@
 
 /**
- * インクルードするモジュールの一覧
+ * 常にinclude.phpを呼び出すモジュールの一覧を$_arrModuleに定義している
  * FIXME dtb_moduleとかに保持する
+ * TODO  dtb_module内にカラムを追加して判定するか、include.phpで定義するかに変更する必要有り。
  */
 $_arrModule = array(
     'mdl_a8',
     'mdl_moba8',
+    'mdl_janet',
     'mdl_opebuilder',
     'mdl_souraku',
Index: /branches/comu-ver2/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php
===================================================================
--- /branches/comu-ver2/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php	(revision 17575)
+++ /branches/comu-ver2/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php	(revision 17670)
@@ -136,11 +136,11 @@
 		        SC_Utils::sfDispError('');
 		    }
-
+			
+		    //現在使用中のテンプレートとデフォルトのテンプレートは削除できないようにする
 		    $template_code = $objForm->getValue('template_code_temp');
-		    if ($template_code == DEFAULT_TEMPLATE_NAME) {
-		        $this->tpl_onload = "alert('選択中のテンプレートは削除出来ません');";
+		    if ($template_code == DEFAULT_TEMPLATE_NAME || $template_code == 'default') {
+		    	$this->tpl_onload = "alert('選択中のテンプレートは削除出来ません');";
 		        break;
 		    }
-
 		    $this->lfDeleteTemplate($template_code);
 		    break;
Index: /branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php
===================================================================
--- /branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php	(revision 17581)
+++ /branches/comu-ver2/data/class/pages/admin/products/LC_Page_Admin_Products_Product.php	(revision 17670)
@@ -462,5 +462,6 @@
                 unset($arrColList[$arrColList_tmp["product_class_id"]]);	 //規格ID
                 unset($arrColList[$arrColList_tmp["product_id"]]);			 //商品ID
-
+				unset($arrColList[$arrColList_tmp["create_date"]]);
+                
                 $col = SC_Utils_Ex::sfGetCommaList($arrColList);
 
@@ -482,8 +483,11 @@
             $objDb->updateProductCategories($arrList['category_id'], $product_id);
         }
-
-        // 規格登録
-        SC_Utils_Ex::sfInsertProductClass($objQuery, $arrList, $product_id , $arrList['product_class_id'] );
-
+        
+        //商品登録の時は規格を生成する。複製の場合は規格も複製されるのでこの処理は不要。
+        if( $_POST["copy_product_id"] == "" ){
+        	// 規格登録
+        	SC_Utils_Ex::sfInsertProductClass($objQuery, $arrList, $product_id , $arrList['product_class_id'] );
+        }
+        
         // 関連商品登録
         $this->lfInsertRecommendProducts($objQuery, $arrList, $product_id);
