Changeset 2290 for temp/trunk


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

* empty log message *

Location:
temp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/module/DB.php

    r1328 r2290  
    2929 */ 
    3030require_once 'PEAR.php'; 
     31 
    3132 
    3233 
  • temp/trunk/html/install/index.php

    r2282 r2290  
    220220    if(!$err_file) { 
    221221        $path = "../../data/Smarty/templates_c/admin"; 
    222         mkdir($path); 
     222        if(file_exists($path)) { 
     223            mkdir($path); 
     224        } 
    223225        $path = "../../html/upload/save_image"; 
    224         mkdir($path); 
     226        if(file_exists($path)) { 
     227            mkdir($path); 
     228        } 
    225229        $path = "../../html/upload/temp_image"; 
    226         mkdir($path); 
     230        if(file_exists($path)) { 
     231            mkdir($path); 
     232        } 
    227233        $path = "../../html/upload/graph_image"; 
    228         mkdir($path); 
     234        if(file_exists($path)) { 
     235            mkdir($path); 
     236        } 
    229237        $path = "../../html/upload/csv"; 
    230         mkdir($path);        
     238        if(file_exists($path)) { 
     239            mkdir($path); 
     240        } 
    231241    } 
    232242     
Note: See TracChangeset for help on using the changeset viewer.