Ignore:
Timestamp:
2011/03/07 15:23:39 (15 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/batch/SC_Batch_Update.php

    r20534 r20538  
    146146 
    147147                        // ファイルを書き出しモードで開く 
    148                         $handle = @fopen($out, "w"); 
     148                        $handle = @fopen($out, 'w'); 
    149149                        if (!$handle) { 
    150150                            // ディレクトリ作成を行ってリトライ 
    151151                            $this->lfMkdirRecursive($out); 
    152                             $handle = @fopen($out, "w"); 
     152                            $handle = @fopen($out, 'w'); 
    153153                            if (!$handle) { 
    154154                                $msg = "コピー先に書き込み権限がありません: " . $out; 
     
    178178        $src = $this->makeDistInfo($bkupDistInfoArray); 
    179179        if (is_writable($bkupPath)) { 
    180             $handle = @fopen($bkupPath . 'distinfo.php', "w"); 
     180            $handle = @fopen($bkupPath . 'distinfo.php', 'w'); 
    181181            @fwrite($handle, $src); 
    182182            @fclose($handle); 
Note: See TracChangeset for help on using the changeset viewer.