Index: temp/trunk/data/class/SC_View.php
===================================================================
--- temp/trunk/data/class/SC_View.php	(revision 2234)
+++ temp/trunk/data/class/SC_View.php	(revision 2240)
@@ -60,5 +60,5 @@
   	
   	// ¥ª¥Ö¥¸¥§¥¯¥ÈÆâ¤ÎÊÑ¿ô¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë¡£
-  	function assignobj($obj) {
+  	function assignobj($obj, $siteinfo = true) {
 		$data = get_object_vars($obj);
 		
@@ -67,11 +67,13 @@
 		}
 		
-		// ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
-		$objSiteInfo = new SC_SiteInfo();
-		$arrInfo['arrSiteInfo'] = $objSiteInfo->data;
-		
-		// ÅÔÆ»ÉÜ¸©Ì¾¤òÊÑ´¹
-		global $arrPref;
-		$arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']];
+		if($siteinfo) {
+			// ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
+			$objSiteInfo = new SC_SiteInfo();
+			$arrInfo['arrSiteInfo'] = $objSiteInfo->data;
+			
+			// ÅÔÆ»ÉÜ¸©Ì¾¤òÊÑ´¹
+			global $arrPref;
+			$arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']];
+		}
 		
 		foreach ($arrInfo as $key => $value){
Index: temp/trunk/data/class/SC_SiteInfo.php
===================================================================
--- temp/trunk/data/class/SC_SiteInfo.php	(revision 1328)
+++ temp/trunk/data/class/SC_SiteInfo.php	(revision 2240)
@@ -19,4 +19,5 @@
 			}
 		}
+		
 		if ( is_object($this->conn)){
 			$conn = $this->conn;
