Changeset 16284


Ignore:
Timestamp:
2007/10/05 23:17:29 (16 years ago)
Author:
nanasess
Message:

インストーラ関数修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/util/SC_Utils.php

    r16263 r16284  
    6363        if(!defined('ECCUBE_INSTALL')) { 
    6464            if(!ereg("/install/", $_SERVER['PHP_SELF'])) { 
    65                 header("Location: ./install/"); 
     65                header("Location: ". SITE_URL . "install/"); 
    6666            } 
    6767        } else { 
    6868            $path = HTML_PATH . "install/index.php"; 
    6969            if(file_exists($path)) { 
    70                 sfErrorHeader(">> /install/index.phpは、インストール完了後にファイルを削除してください。"); 
     70                SC_Utils::sfErrorHeader(">> /install/index.phpは、インストール完了後にファイルを削除してください。"); 
    7171            } 
    7272 
     
    7474            $path = HTML_PATH . "install.php"; 
    7575            if(file_exists($path)) { 
    76                 sfErrorHeader(">> /install.phpはセキュリティーホールとなります。削除してください。"); 
     76                SC_Utils::sfErrorHeader(">> /install.phpはセキュリティーホールとなります。削除してください。"); 
    7777            } 
    7878        } 
Note: See TracChangeset for help on using the changeset viewer.