Changeset 20538 for branches/version-2_5-dev/data/class/batch
- Timestamp:
- 2011/03/07 15:23:39 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/batch/SC_Batch_Update.php
r20534 r20538 146 146 147 147 // ファイルを書き出しモードで開く 148 $handle = @fopen($out, "w");148 $handle = @fopen($out, 'w'); 149 149 if (!$handle) { 150 150 // ディレクトリ作成を行ってリトライ 151 151 $this->lfMkdirRecursive($out); 152 $handle = @fopen($out, "w");152 $handle = @fopen($out, 'w'); 153 153 if (!$handle) { 154 154 $msg = "コピー先に書き込み権限がありません: " . $out; … … 178 178 $src = $this->makeDistInfo($bkupDistInfoArray); 179 179 if (is_writable($bkupPath)) { 180 $handle = @fopen($bkupPath . 'distinfo.php', "w");180 $handle = @fopen($bkupPath . 'distinfo.php', 'w'); 181 181 @fwrite($handle, $src); 182 182 @fclose($handle);
Note: See TracChangeset
for help on using the changeset viewer.
