Changeset 15722
- Timestamp:
- 2007/09/18 21:43:35 (16 years ago)
- Location:
- branches/feature-module-update/data/conf
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/conf/conf.php
r15708 r15722 9 9 10 10 $CONF_PHP_PATH = realpath( dirname( __FILE__) ); 11 require_once($CONF_PHP_PATH ."/../install .php");11 require_once($CONF_PHP_PATH ."/../install_mysql.php"); 12 12 require_once($CONF_PHP_PATH ."/core.php" ); 13 13 … … 38 38 ini_set("mbstring.substitute_character", "none"); 39 39 40 /** EC-CUBEのバージョン */ 41 define('ECCUBE_VERSION', "1.5"); 42 40 43 /** 41 44 * 定数を設定する. 42 45 * 43 * 注意: この関数を外部で使用すること を推奨しません.46 * 注意: この関数を外部で使用することは推奨しません. 44 47 * 45 48 * mtb_constants.php を読み込んで定数を設定する. 46 * キャッシュディレクトリに存在しない場合は, インストーラからコピーする.49 * キャッシュディレクトリに存在しない場合は, 初期データからコピーする. 47 50 * 48 51 * @access private … … 57 60 require_once($CONF_PHP_PATH . "/cache/mtb_constants.php"); 58 61 59 // キャッシュが無ければ, インストーラからコピー62 // キャッシュが無ければ, 初期データからコピー 60 63 } elseif (is_file($CONF_PHP_PATH 61 . "/ ../" . DATA_DIR2HTML . "install/mtb_constants.php")) {64 . "/mtb_constants_init.php")) { 62 65 63 $mtb_constants = file_get_contents($CONF_PHP_PATH 64 . "/../" . DATA_DIR2HTML 65 . "install/mtb_constants.php"); 66 $mtb_constants = file_get_contents($CONF_PHP_PATH . "/mtb_constants_init.php"); 66 67 $handle = fopen($CONF_PHP_PATH . "/cache/mtb_constants.php", "w"); 67 68 if (!$handle) { -
branches/feature-module-update/data/conf/mtb_constants_init.php
r15715 r15722 84 84 /** 文字コード */ 85 85 define('CHAR_CODE', "UTF-8"); 86 /** EC-CUBEバージョン情報 */87 define('ECCUBE_VERSION', "1.5");88 86 /** 決済モジュール付与文言 */ 89 87 define('ECCUBE_PAYMENT', "EC-CUBE");
Note: See TracChangeset
for help on using the changeset viewer.