Ignore:
Timestamp:
2007/08/16 12:49:32 (17 years ago)
Author:
nanasess
Message:

クラス化対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/util/SC_Utils.php

    r15279 r15285  
    111111    /* エラーページの表示 */ 
    112112    function sfDispError($type) { 
    113 // FIXME 
    114 //        class LC_ErrorPage { 
    115 //            function LC_ErrorPage() { 
    116 //                $this->tpl_mainpage = 'login_error.tpl'; 
    117 //                $this->tpl_title = 'エラー'; 
    118 //            } 
    119 //        } 
    120  
    121         //$objPage = new LC_ErrorPage(); 
    122         $objPage = new LC_Page(); 
     113 
     114        $objPage = new LC_Page_Error_Ex(); 
     115        $objPage->init(); 
    123116        $objView = new SC_AdminView(); 
    124117 
     
    149142    /* サイトエラーページの表示 */ 
    150143    function sfDispSiteError($type, $objSiteSess = "", $return_top = false, $err_msg = "", $is_mobile = false) { 
     144        // FIXME 
    151145        global $objCampaignSess; 
    152146 
     
    154148            $objSiteSess->setNowPage('error'); 
    155149        } 
    156 // FIXME 
    157 //        class LC_ErrorPage { 
    158 //            function LC_ErrorPage() { 
    159 //                $this->tpl_mainpage = 'error.tpl'; 
    160 //                $this->tpl_css = URL_DIR.'css/layout/error.css'; 
    161 //                $this->tpl_title = 'エラー'; 
    162 //            } 
    163 //        } 
    164  
    165         //$objPage = new LC_ErrorPage(); 
     150 
    166151        $objPage = new LC_Page_Error_Ex(); 
    167152        $objPage->init(); 
Note: See TracChangeset for help on using the changeset viewer.