Changeset 19937 for branches/version-2_5-dev/html
- Timestamp:
- 2011/01/17 03:28:37 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/html/install/index.php
r19931 r19937 399 399 // プログラムで書込みされるファイル・ディレクトリ 400 400 $arrWriteFile = array( 401 DATA_REALDIR . "install.php",402 401 USER_REALDIR, 403 402 HTML_REALDIR . "upload", … … 408 407 DATA_REALDIR . "downloads/", 409 408 DATA_REALDIR . "upload/", 410 HTML_REALDIR . ADMIN_DIR 409 HTML_REALDIR . ADMIN_DIR, 411 410 ); 412 411 … … 926 925 $url_dir = ereg_replace("^https?://[a-zA-Z0-9_:~=&\?\.\-]+", "", $normal_url); 927 926 928 $filepath = DATA_REALDIR . "install.php";929 930 927 //管理機能SSL制限 931 928 if($objWebParam->getValue('admin_force_ssl') == 1 and strpos($secure_url,"https://") !== FALSE){ … … 968 965 "?>"; 969 966 970 if ($fp = fopen($filepath,"w")) {967 if ($fp = fopen(CONFIG_REALFILE, 'w')) { 971 968 fwrite($fp, $config_data); 972 969 fclose($fp);
Note: See TracChangeset
for help on using the changeset viewer.