Index: /branches/feature-module-update/html/frontparts/bloc/category.php
===================================================================
--- /branches/feature-module-update/html/frontparts/bloc/category.php	(revision 15080)
+++ /branches/feature-module-update/html/frontparts/bloc/category.php	(revision 15152)
@@ -39,7 +39,7 @@
     $arrRet = $objQuery->select($col, $from, $where);
 
-    $arrParentID = SC_Utils::sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
-    $arrBrothersID = SC_Utils::sfGetBrothersArray($arrRet, 'parent_category_id', 'category_id', $arrParentID);
-    $arrChildrenID = SC_Utils::sfGetUnderChildrenArray($arrRet, 'parent_category_id', 'category_id', $parent_category_id);
+    $arrParentID = SC_Utils_Ex::sfGetParents($objQuery, 'dtb_category', 'parent_category_id', 'category_id', $parent_category_id);
+    $arrBrothersID = SC_Utils_Ex::sfGetBrothersArray($arrRet, 'parent_category_id', 'category_id', $arrParentID);
+    $arrChildrenID = SC_Utils_Ex::sfGetUnderChildrenArray($arrRet, 'parent_category_id', 'category_id', $parent_category_id);
 
     $objSubPage->root_parent_id = $arrParentID[0];
Index: /branches/feature-module-update/html/frontparts/bloc/search_products.php
===================================================================
--- /branches/feature-module-update/html/frontparts/bloc/search_products.php	(revision 15080)
+++ /branches/feature-module-update/html/frontparts/bloc/search_products.php	(revision 15152)
@@ -6,8 +6,8 @@
  */
 class LC_SearchProductsPage {
-	function LC_SearchProductsPage() {
-		/** 必ず変更する **/
-		$this->tpl_mainpage = BLOC_PATH . 'search_products.tpl';	// メイン
-	}
+    function LC_SearchProductsPage() {
+        /** 必ず変更する **/
+        $this->tpl_mainpage = BLOC_PATH . 'search_products.tpl';	// メイン
+    }
 }
 
@@ -16,13 +16,13 @@
 
 // 選択中のカテゴリIDを判定する
-$objSubPage->category_id = sfGetCategoryId($_GET['product_id'], $_GET['category_id']);
+$objSubPage->category_id = SC_Utils_Ex::sfGetCategoryId($_GET['product_id'], $_GET['category_id']);
 // カテゴリ検索用選択リスト
-$arrRet = sfGetCategoryList('', true, '　');
+$arrRet = SC_Utils_Ex::sfGetCategoryList('', true, '　');
 
 if(is_array($arrRet)) {
-	// 文字サイズを制限する
-	foreach($arrRet as $key => $val) {
-		$arrRet[$key] = sfCutString($val, SEARCH_CATEGORY_LEN);
-	}
+    // 文字サイズを制限する
+    foreach($arrRet as $key => $val) {
+        $arrRet[$key] = SC_Utils_Ex::sfCutString($val, SEARCH_CATEGORY_LEN);
+    }
 }
 $objSubPage->arrCatList = $arrRet;
