Index: branches/version-2/data/class/util/SC_Utils.php
===================================================================
--- branches/version-2/data/class/util/SC_Utils.php	(revision 17121)
+++ branches/version-2/data/class/util/SC_Utils.php	(revision 17199)
@@ -1221,8 +1221,9 @@
     }
 
-    // 出力の際にテンプレートを切り替えられる
-    /*
-        index.php?tpl=test.tpl
-    */
+    /**
+     * テンプレートを切り替えて出力する
+     *
+     * @deprecated 2008/04/02以降使用不可
+     */
     function sfCustomDisplay(&$objPage, $is_mobile = false) {
         $basename = basename($_SERVER["REQUEST_URI"]);
@@ -1243,5 +1244,5 @@
 
         $template_path = TEMPLATE_FTP_DIR . $tpl_name;
-
+echo $template_path;
         if($is_mobile === true) {
             $objView = new SC_MobileView();
Index: branches/version-2/data/class/pages/products/LC_Page_Products_List.php
===================================================================
--- branches/version-2/data/class/pages/products/LC_Page_Products_List.php	(revision 17168)
+++ branches/version-2/data/class/pages/products/LC_Page_Products_List.php	(revision 17199)
@@ -73,6 +73,11 @@
      */
     function process() {
+        $objView = new SC_SiteView();
         $conn = new SC_DBConn();
         $objDb = new SC_Helper_DB_Ex();
+
+        // レイアウトデザインを取得
+        $helper = new SC_Helper_PageLayout_Ex();
+        $helper->sfGetPageLayout($this, false, DEF_LAYOUT);
 
         //表示件数の選択
@@ -191,5 +196,6 @@
         $this->arrSearch = $arrSearch;
 
-        SC_Utils_Ex::sfCustomDisplay($this);
+        $objView->assignobj($this);
+        $objView->display(SITE_FRAME);
     }
 
@@ -211,4 +217,5 @@
      */
     function mobileProcess() {
+        $objView = new SC_MobileView();
         $conn = new SC_DBConn();
         $objDb = new SC_Helper_DB_Ex();
@@ -336,5 +343,4 @@
         }
 
-
         $this->tpl_subtitle = $tpl_subtitle;
         $this->tpl_search_mode = $tpl_search_mode;
@@ -348,5 +354,7 @@
         $this->arrSearch = $arrSearch;
         $this->tpl_mainpage = MOBILE_TEMPLATE_DIR . "products/list.tpl";
-        SC_Utils_Ex::sfCustomDisplay($this, true);
+        
+        $objView->assignobj($this);
+        $objView->display(SITE_FRAME);
     }
 
