Changeset 2294 for temp/trunk


Ignore:
Timestamp:
2006/08/28 13:47:42 (20 years ago)
Author:
naka
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/install/index.php

    r2290 r2294  
    220220    if(!$err_file) { 
    221221        $path = "../../data/Smarty/templates_c/admin"; 
    222         if(file_exists($path)) { 
     222        if(!file_exists($path)) { 
    223223            mkdir($path); 
    224224        } 
    225225        $path = "../../html/upload/save_image"; 
    226         if(file_exists($path)) { 
     226        if(!file_exists($path)) { 
    227227            mkdir($path); 
    228228        } 
    229229        $path = "../../html/upload/temp_image"; 
    230         if(file_exists($path)) { 
     230        if(!file_exists($path)) { 
    231231            mkdir($path); 
    232232        } 
    233233        $path = "../../html/upload/graph_image"; 
    234         if(file_exists($path)) { 
     234        if(!file_exists($path)) { 
    235235            mkdir($path); 
    236236        } 
    237237        $path = "../../html/upload/csv"; 
    238         if(file_exists($path)) { 
     238        if(!file_exists($path)) { 
    239239            mkdir($path); 
    240240        } 
Note: See TracChangeset for help on using the changeset viewer.