Show
Ignore:
Timestamp:
06/02/08 06:31:26 (18 months ago)
Author:
takayama
Message:

Fixed BugId:79959
* Created new function that creates directory recursively.
* Changed to new function call instead of mkdir call directly.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-39/php/lib/function.mtinclude.php

    r2196 r2478  
    231231        $include_dir = dirname($include_file); 
    232232        if (!file_exists($include_dir) && !is_dir($include_dir)) { 
    233             mkdir($include_dir, 0777, true); 
     233            mkpath($include_dir, 0777); 
    234234        } 
    235235        if (is_writable($include_dir)) {