Ignore:
Timestamp:
2009/09/21 00:24:42 (17 years ago)
Author:
Seasoft
Message:

merge r18118
・取得元: version-2_4

  • /html/upload/csv/ を削除
  • 空ディレクトリ用のダミーファイルを配置

【取得元のログメッセージ】

  • #459 アップロードしたcsvファイルにアクセスできる不具合を修正
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/html/install/index.php

    r18293 r18296  
    396396        DATA_PATH . "Smarty/", 
    397397        DATA_PATH . "logs/", 
    398         DATA_PATH . "downloads/" 
     398        DATA_PATH . "downloads/", 
     399        DATA_PATH . "upload/", 
    399400    ); 
    400401 
     
    471472            mkdir($path); 
    472473        } 
    473         $path = HTML_PATH . "upload/csv"; 
    474         if(!file_exists($path)) { 
    475             mkdir($path); 
    476         } 
    477474        $path = DATA_PATH . "downloads/module"; 
    478475        if(!file_exists($path)) { 
     
    480477        } 
    481478        $path = DATA_PATH . "downloads/update"; 
     479        if(!file_exists($path)) { 
     480            mkdir($path); 
     481        } 
     482        $path = DATA_PATH . "upload/csv"; 
    482483        if(!file_exists($path)) { 
    483484            mkdir($path); 
Note: See TracChangeset for help on using the changeset viewer.