Index: /temp/trunk/data/class/SC_View.php
===================================================================
--- /temp/trunk/data/class/SC_View.php	(revision 8424)
+++ /temp/trunk/data/class/SC_View.php	(revision 8425)
@@ -137,5 +137,5 @@
 
 class SC_SiteView extends SC_View{
-    function SC_SiteView($cart = false) {
+    function SC_SiteView($cart = true) {
     	parent::SC_View();
 		$this->_smarty->template_dir = TEMPLATE_DIR;
@@ -146,5 +146,5 @@
 		sfDomainSessionStart();
 		
-		if(!$cart){
+		if($cart){
 			$objCartSess = new SC_CartSession();
 			$objCartSess->setPrevURL($_SERVER['REQUEST_URI']);
Index: /temp/trunk/html/mypage/delivery_addr.php
===================================================================
--- /temp/trunk/html/mypage/delivery_addr.php	(revision 6080)
+++ /temp/trunk/html/mypage/delivery_addr.php	(revision 8425)
@@ -19,5 +19,5 @@
 
 $objPage = new LC_Page();
-$objView = new SC_SiteView();
+$objView = new SC_SiteView(false);
 $objQuery = new SC_Query();
 $objCustomer = new SC_Customer();
Index: /temp/trunk/html/cart/index.php
===================================================================
--- /temp/trunk/html/cart/index.php	(revision 8424)
+++ /temp/trunk/html/cart/index.php	(revision 8425)
@@ -24,5 +24,5 @@
 
 $objPage = new LC_Page();
-$objView = new SC_SiteView(true);
+$objView = new SC_SiteView(false);
 $objCartSess = new SC_CartSession("", false);
 $objSiteSess = new SC_SiteSession();
