Ignore:
Timestamp:
2010/12/31 23:23:49 (13 years ago)
Author:
Seasoft
Message:

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある) 一部実装

File:
1 edited

Legend:

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

    r19803 r19805  
    4444    // コンストラクタ 
    4545    function SC_FormParam() { 
    46         $this->check_dir = IMAGE_SAVE_FILE_PATH; 
     46        $this->check_dir = IMAGE_SAVE_REALDIR; 
    4747        $this->initParam(); 
    4848    } 
     
    250250                // ダウンロード用ファイルの存在チェック 
    251251                case 'DOWN_FILE_EXISTS': 
    252                     if($this->param[$cnt] != "" && !file_exists(DOWN_SAVE_FILE_PATH . $this->param[$cnt])) { 
     252                    if($this->param[$cnt] != "" && !file_exists(DOWN_SAVE_REALDIR . $this->param[$cnt])) { 
    253253                        $objErr->arrErr[$val] = "※ " . $this->disp_name[$cnt] . "のファイルが存在しません。<br>"; 
    254254                    } 
Note: See TracChangeset for help on using the changeset viewer.