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

#640(URL の index.php ハードコーディングを解消し省略・変更を考慮)

  • IIS動作未確認

#834(パスに関わるパラメータ名が不適切)

  • DIR_INDEX_URL -> DIR_INDEX_PATH
File:
1 edited

Legend:

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

    r19986 r19998  
    8686            } 
    8787        } 
    88         $path = HTML_REALDIR . "install/index.php"; 
     88        $path = HTML_REALDIR . 'install/' . DIR_INDEX_FILE; 
    8989        if(file_exists($path)) { 
    90             SC_Utils::sfErrorHeader(">> /install/index.phpは、インストール完了後にファイルを削除してください。"); 
     90            SC_Utils::sfErrorHeader('>> /install/' . DIR_INDEX_FILE . ' は、インストール完了後にファイルを削除してください。'); 
    9191        } 
    9292    } 
     
    104104     */ 
    105105    function searchInstallerPath($path) { 
    106         $installer = 'install/index.php'; 
     106        $installer = 'install/' . DIR_INDEX_PATH; 
    107107 
    108108        if (SC_Utils::sfIsHTTPS()) { 
Note: See TracChangeset for help on using the changeset viewer.