Ignore:
Timestamp:
2011/03/07 12:25:01 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

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

    r20462 r20534  
    7373        define('CONFIG_REALFILE', realpath(dirname(__FILE__)) . '/../config/config.php'); 
    7474        if (file_exists(CONFIG_REALFILE)) { 
    75             require_once(CONFIG_REALFILE); 
     75            require_once CONFIG_REALFILE; 
    7676        } 
    7777    } 
     
    190190        // 定数を設定 
    191191        if (is_file(CACHE_REALDIR . "mtb_constants.php")) { 
    192             require_once(CACHE_REALDIR . "mtb_constants.php"); 
     192            require_once CACHE_REALDIR . 'mtb_constants.php'; 
    193193 
    194194            // キャッシュが無ければ, 初期データからコピー 
     
    206206                fclose($handle); 
    207207 
    208                 require_once(CACHE_REALDIR . "mtb_constants.php"); 
     208                require_once CACHE_REALDIR . 'mtb_constants.php'; 
    209209            } else { 
    210210                die($errorMessage); 
Note: See TracChangeset for help on using the changeset viewer.