Index: /branches/beta/html/admin/products/product.php
===================================================================
--- /branches/beta/html/admin/products/product.php	(revision 16697)
+++ /branches/beta/html/admin/products/product.php	(revision 16698)
@@ -366,5 +366,5 @@
 
 	// ¥â¥Ó¥ê¥ó¥¯¤¬Í­¸ú¤Ê¾ì¹ç
-	if(sfIsMoviLink()) {
+	if(function_exists('sfIsMoviLink') && sfIsMoviLink()) {
 		$sqlval['movilink_net_percent'] = $arrList['movilink_net_percent'];
 		$sqlval['movilink_net_fix'] = $arrList['movilink_net_fix'];
Index: /branches/beta/html/admin/products/index.php
===================================================================
--- /branches/beta/html/admin/products/index.php	(revision 16694)
+++ /branches/beta/html/admin/products/index.php	(revision 16698)
@@ -247,7 +247,9 @@
 			$arrOutputTitle = $arrOutput['disp_name'];
 
-			$head = sfGetMovilinkCSVList($arrOutputTitle);
-
-			$data = sfGetMovilinkCSV($where, $option, $arrval, $arrOutputCols);
+			$head = function_exists('sfGetMovilinkCSVList') ? sfGetMovilinkCSVList($arrOutputTitle) : '';
+
+			$data = function_exists('sfGetMovilinkCSV')
+			    ? sfGetMovilinkCSV($where, $option, $arrval, $arrOutputCols)
+			    : '';
 
 			// CSV¤òÁ÷¿®¤¹¤ë¡£
