Ignore:
Timestamp:
2010/12/01 15:26:56 (16 years ago)
Author:
nanasess
bzr:base-revision:
svn-v4:1e3b908f-19a9-db11-a64c-001125224ba8:branches/version-2_5-dev:19697
bzr:committer:
Kentaro Ohkouchi <[email protected]>
bzr:file-ids:

data/Smarty/templates/default/abouts/index.tpl 15732@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2FSmarty%2Ftemplates%2Fdefault%2Fabouts%2Findex.tpl
data/class/SC_View.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2FSC_View.php
data/class/pages/abouts/LC_Page_Abouts.php 15078@1e3b908f-19a9-db11-a64c-001125224ba8:branches%2Ffeature-module-update%2Fdata%2Fclass%2Fpages%2Fabouts%2FLC_Page_Abouts.php
bzr:mapping-version:
v4
bzr:repository-uuid:
1e3b908f-19a9-db11-a64c-001125224ba8
bzr:revision-id:
[email protected]
bzr:revno:
2428
bzr:revprop:branch-nick:
branches/version-2_5-dev
bzr:root:
branches/version-2_5-dev
bzr:timestamp:
2010-12-01 15:26:47.851999998 +0900
bzr:user-agent:
bzr2.2.1+bzr-svn1.0.4
svn:original-date:
2010-12-01T06:26:47.852000Z
Message:

#787 スマートフォン対応

  • 「当サイトについて」が表示できなかったのを修正
Location:
branches/version-2_5-dev/data/class
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_View.php

    r19685 r19698  
    6969 
    7070        // サイト情報を取得する 
     71        // XXX 要動作確認. 不要の可能性有り 
    7172        if($siteinfo) { 
    7273            if(!defined('LOAD_SITEINFO')) { 
  • branches/version-2_5-dev/data/class/pages/abouts/LC_Page_Abouts.php

    r19670 r19698  
    4747        $this->tpl_page_category = 'abouts'; 
    4848        $this->tpl_title = '当サイトについて'; 
     49        $masterData = new SC_DB_MasterData_Ex(); 
     50        $this->arrPref = $masterData->getMasterData("mtb_pref", array("pref_id", "pref_name", "rank")); 
    4951    } 
    5052 
     
    6971        $layout = new SC_Helper_PageLayout_Ex(); 
    7072        $layout->sfGetPageLayout($this, false, DEF_LAYOUT); 
     73 
     74        $this->objSiteInfo = new SC_SiteInfo(); 
     75        $this->objSiteInfo->data['pref'] = 
     76            isset($this->arrPref[$this->objSiteInfo->data['pref']]) 
     77            ? $this->arrPref[$this->objSiteInfo->data['pref']] : ""; 
    7178    } 
    7279 
Note: See TracChangeset for help on using the changeset viewer.