Index: /temp/trunk/data/class/SC_View.php
===================================================================
--- /temp/trunk/data/class/SC_View.php	(revision 2244)
+++ /temp/trunk/data/class/SC_View.php	(revision 2249)
@@ -6,9 +6,10 @@
 	
     var $_smarty;
+	var $arrInfo;	// ¥µ¥¤¥È¾ðÊó
 	
     // ¥³¥ó¥¹¥È¥é¥¯¥¿
     function SC_View() {
 		global $SC_VIEW_PHP_DIR;
-		
+
     	$this->_smarty = new Smarty;
 		$this->_smarty->left_delimiter = '<!--{';
@@ -33,8 +34,17 @@
 		$this->_smarty->register_function("sf_mktime","sf_mktime");
 		$this->_smarty->register_function("sf_date","sf_date");		
-		
+
 		if(ADMIN_MODE == '1') {		
 			$this->time_start = time();
 		}
+
+		// ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
+		$objSiteInfo = new SC_SiteInfo();
+		$this->arrInfo['arrSiteInfo'] = $objSiteInfo->data;
+
+		// ÅÔÆ»ÉÜ¸©Ì¾¤òÊÑ´¹
+		global $arrPref;
+		$this->arrInfo['arrSiteInfo']['pref'] = $arrPref[$arrInfo['arrSiteInfo']['pref']];
+		
 	}
     
@@ -67,4 +77,8 @@
 		}
 		
+		// ¥µ¥¤¥È¾ðÊó¤ò¤¹¤Ù¤Æ³ä¤êÅö¤Æ¤ë
+		foreach ($this->arrInfo as $key => $value){
+			$this->_smarty->assign($key, $value);
+		}
 		if($siteinfo) {
 			// ¥µ¥¤¥È¾ðÊó¤ò³ä¤êÅö¤Æ¤ë
@@ -106,5 +120,5 @@
 		$this->initpath();
 	}
-	
+
 	function printr($data){
 		print_r($data);
