Index: temp/trunk/html/cart/index.php
===================================================================
--- temp/trunk/html/cart/index.php	(revision 8417)
+++ temp/trunk/html/cart/index.php	(revision 8420)
@@ -25,5 +25,5 @@
 $objPage = new LC_Page();
 $objView = new SC_SiteView();
-$objCartSess = new SC_CartSession();
+$objCartSess = new SC_CartSession("", false);
 $objSiteSess = new SC_SiteSession();
 $objSiteInfo = $objView->objSiteInfo;
Index: temp/trunk/html/index.php
===================================================================
--- temp/trunk/html/index.php	(revision 8416)
+++ temp/trunk/html/index.php	(revision 8420)
@@ -20,5 +20,4 @@
 $conn = new SC_DBConn();
 $objCartSess = new SC_CartSession();
-$objCartSess->setPrevURL($_SERVER['REQUEST_URI']);
 
 // ¥ì¥¤¥¢¥¦¥È¥Ç¥¶¥¤¥ó¤ò¼èÆÀ
Index: temp/trunk/data/class/SC_CartSession.php
===================================================================
--- temp/trunk/data/class/SC_CartSession.php	(revision 8414)
+++ temp/trunk/data/class/SC_CartSession.php	(revision 8420)
@@ -12,7 +12,13 @@
 	
 	/* ¥³¥ó¥¹¥È¥é¥¯¥¿ */
-	function SC_CartSession($key = 'cart') {
+	function SC_CartSession($key = 'cart', $url = true) {
 		sfDomainSessionStart();
+		
+		if($key == "") $key = "cart";
 		$this->key = $key;
+		
+		if($url){
+			$this->setPrevURL($_SERVER['REQUEST_URI']);
+		}
 	}
 	
