Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/error/LC_Page_Error.php

    r22567 r22796  
    3232 * @version $Id:LC_Page_Error.php 15532 2007-08-31 14:39:46Z nanasess $ 
    3333 */ 
    34 class LC_Page_Error extends LC_Page_Ex  
    35 { 
     34class LC_Page_Error extends LC_Page_Ex { 
    3635 
    3736    // {{{ properties 
     
    6261     * @return void 
    6362     */ 
    64     function init() 
    65     { 
     63    function init() { 
    6664        $this->tpl_mainpage = 'error.tpl'; 
    6765        $this->tpl_title = 'エラー'; 
     
    7270        $objHelperPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->plugin_activate_flg); 
    7371        $objHelperPlugin->arrRegistedPluginActions = array(); 
    74  
    75         // キャッシュから店舗情報取得(DBへの接続は行わない) 
    76         $this->arrSiteInfo = SC_Helper_DB_Ex::sfGetBasisDataCache(false); 
    7772    } 
    7873 
     
    8277     * @return void 
    8378     */ 
    84     function process() 
    85     { 
     79    function process() { 
    8680        parent::process(); 
    8781        $this->action(); 
     
    9488     * @return void 
    9589     */ 
    96     function action() 
    97     { 
     90    function action() { 
    9891 
    9992        switch ($this->type) { 
     
    181174     * @return void 
    182175     */ 
    183     function destroy() 
    184     { 
     176    function destroy() { 
    185177        parent::destroy(); 
    186178    } 
     
    189181     * エラーページではトランザクショントークンの自動検証は行わない 
    190182     */ 
    191     function doValidToken() 
    192     { 
     183    function doValidToken() { 
    193184        // queit. 
    194185    } 
Note: See TracChangeset for help on using the changeset viewer.