Index: temp/trunk/html/index.php
===================================================================
--- temp/trunk/html/index.php	(revision 8420)
+++ temp/trunk/html/index.php	(revision 8421)
@@ -20,4 +20,5 @@
 $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 8420)
+++ temp/trunk/data/class/SC_CartSession.php	(revision 8421)
@@ -12,13 +12,9 @@
 	
 	/* ¥³¥ó¥¹¥È¥é¥¯¥¿ */
-	function SC_CartSession($key = 'cart', $url = true) {
+	function SC_CartSession($key = 'cart') {
 		sfDomainSessionStart();
 		
 		if($key == "") $key = "cart";
 		$this->key = $key;
-		
-		if($url){
-			$this->setPrevURL($_SERVER['REQUEST_URI']);
-		}
 	}
 	
