Index: /temp/trunk/html/cart/index.php
===================================================================
--- /temp/trunk/html/cart/index.php	(revision 8420)
+++ /temp/trunk/html/cart/index.php	(revision 8424)
@@ -24,5 +24,5 @@
 
 $objPage = new LC_Page();
-$objView = new SC_SiteView();
+$objView = new SC_SiteView(true);
 $objCartSess = new SC_CartSession("", false);
 $objSiteSess = new SC_SiteSession();
Index: /temp/trunk/html/input_zip.php
===================================================================
--- /temp/trunk/html/input_zip.php	(revision 5934)
+++ /temp/trunk/html/input_zip.php	(revision 8424)
@@ -21,5 +21,5 @@
 $conn = new SC_DBconn(ZIP_DSN);
 $objPage = new LC_Page();
-$objView = new SC_SiteView();
+$objView = new SC_SiteView(false);
 
 // ÆþÎÏ¥¨¥é¡¼¥Á¥§¥Ã¥¯
Index: /temp/trunk/data/class/SC_View.php
===================================================================
--- /temp/trunk/data/class/SC_View.php	(revision 8423)
+++ /temp/trunk/data/class/SC_View.php	(revision 8424)
@@ -137,5 +137,5 @@
 
 class SC_SiteView extends SC_View{
-    function SC_SiteView() {
+    function SC_SiteView($cart = false) {
     	parent::SC_View();
 		$this->_smarty->template_dir = TEMPLATE_DIR;
@@ -144,6 +144,10 @@
 		
 		// PHP5¤Ç¤Ïsession¤ò¥¹¥¿¡¼¥È¤¹¤ëÁ°¤Ë¥Ø¥Ã¥À¡¼¾ðÊó¤òÁ÷¿®¤·¤Æ¤¤¤ë¤È·Ù¹ð¤¬½Ð¤ë¤¿¤á¡¢Àè¤Ë¥»¥Ã¥·¥ç¥ó¤ò¥¹¥¿¡¼¥È¤¹¤ë¤è¤¦¤ËÊÑ¹¹
-		$objCartSess = new SC_CartSession();
-		$objCartSess->setPrevURL($_SERVER['REQUEST_URI']);
+		sfDomainSessionStart();
+		
+		if(!$cart){
+			$objCartSess = new SC_CartSession();
+			$objCartSess->setPrevURL($_SERVER['REQUEST_URI']);
+		}
 		
 	}
