Ignore:
Timestamp:
2011/01/17 05:47:34 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)

  • EC-CUBE標準規約に準拠した定数名とする。

#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/html/install/index.php

    r19937 r19938  
    3030// ▲require.php 相当 
    3131 
    32 $INSTALL_DIR = realpath(dirname( __FILE__)); 
     32$ownDir = realpath(dirname(__FILE__)) . '/'; 
    3333require_once(DATA_REALDIR . "module/Request.php"); 
    3434 
     
    5353 
    5454// テンプレートコンパイルディレクトリの書込み権限チェック 
    55 $temp_dir = $INSTALL_DIR . '/temp'; 
     55$temp_dir = $ownDir . 'temp'; 
    5656 
    5757if(!is_writable($temp_dir)) { 
     
    6060} 
    6161 
    62 $objView = new SC_InstallView($INSTALL_DIR . '/templates', $INSTALL_DIR . '/temp'); 
     62$objView = new SC_InstallView($ownDir . 'templates', $ownDir . 'temp'); 
    6363 
    6464// パラメータ管理クラス 
Note: See TracChangeset for help on using the changeset viewer.