Ignore:
Timestamp:
2012/06/21 19:08:49 (12 years ago)
Author:
pineray
Message:

#1877 インストール時のパーミッションチェック漏れ

最初に与えられたディレクトリーもリストに加えるよう変更

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/html/install/index.php

    r21876 r21938  
    10301030function listdirs($dir) { 
    10311031    global $alldirs; 
     1032    $alldirs[] = $dir; 
    10321033    $dirs = glob($dir . '/*'); 
    10331034    if (is_array($dirs) && count($dirs) > 0) { 
    10341035        foreach ($dirs as $d) { 
    1035             $alldirs[] = $d; 
    10361036            listdirs($d); 
    10371037        } 
Note: See TracChangeset for help on using the changeset viewer.