Index: branches/dev/html/shopping/complete.php
===================================================================
--- branches/dev/html/shopping/complete.php	(revision 347)
+++ branches/dev/html/shopping/complete.php	(revision 364)
@@ -63,22 +63,23 @@
 	// ¤½¤ÎÂ¾¾ðÊó¤Î¼èÆÀ
 	$arrResults = $objQuery->getall("SELECT memo02, memo05 FROM dtb_order WHERE order_id = ? ", array($order_id));
-	$cntRes = count($arrResults);
-	
-	if ($cntRes > 0) {
-		// ´°Î»²èÌÌ¤ÇÉ½¼¨¤¹¤ë·èºÑÆâÍÆ
-		$arrOther = unserialize($arrResults[0]["memo02"]);
-		// ´°Î»²èÌÌ¤«¤éÁ÷¿®¤¹¤ë·èºÑÆâÍÆ
-		$arrModuleParam = unserialize($arrResults[0]["memo05"]);
-		
-		// ¥Ç¡¼¥¿¤òÊÔ½¸
-		foreach($arrOther as $key => $val){
-			// URL¤Î¾ì¹ç¤Ë¤Ï¥ê¥ó¥¯¤Ä¤­¤ÇÉ½¼¨¤µ¤»¤ë
-			if (preg_match('/^(https?|ftp)(:\/\/[-_.!~*\'()a-zA-Z0-9;\/?:\@&=+\$,%#]+)$/', $val["value"])) {
-				$arrOther[$key]["value"] = "<a href='#' onClick=\"window.open('". $val["value"] . "'); \" >" . $val["value"] ."</a>";
+
+	if (count($arrResults) > 0) {	
+		if (isset($arrResults[0]["memo02"]) || isset($arrResults[0]["memo05"])) {
+			// ´°Î»²èÌÌ¤ÇÉ½¼¨¤¹¤ë·èºÑÆâÍÆ
+			$arrOther = unserialize($arrResults[0]["memo02"]);
+			// ´°Î»²èÌÌ¤«¤éÁ÷¿®¤¹¤ë·èºÑÆâÍÆ
+			$arrModuleParam = unserialize($arrResults[0]["memo05"]);
+			
+			// ¥Ç¡¼¥¿¤òÊÔ½¸
+			foreach($arrOther as $key => $val){
+				// URL¤Î¾ì¹ç¤Ë¤Ï¥ê¥ó¥¯¤Ä¤­¤ÇÉ½¼¨¤µ¤»¤ë
+				if (preg_match('/^(https?|ftp)(:\/\/[-_.!~*\'()a-zA-Z0-9;\/?:\@&=+\$,%#]+)$/', $val["value"])) {
+					$arrOther[$key]["value"] = "<a href='#' onClick=\"window.open('". $val["value"] . "'); \" >" . $val["value"] ."</a>";
+				}
 			}
+					
+			$objPage->arrOther = $arrOther;
+			$objPage->arrModuleParam = $arrModuleParam;
 		}
-				
-		$objPage->arrOther = $arrOther;
-		$objPage->arrModuleParam = $arrModuleParam;
 	}
 	
