Ignore:
Timestamp:
2013/05/02 18:11:36 (13 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3131 * @version $Id$ 
    3232 */ 
    33 class SC_Batch_Update extends SC_Batch  
    34 { 
     33class SC_Batch_Update extends SC_Batch { 
    3534 
    3635    /** 
     
    5049     * @return void 
    5150     */ 
    52     function execute($target = '.') 
    53     { 
     51    function execute($target = '.') { 
    5452        $msg = ''; 
    5553        $oldMask = umask(0); 
     
    198196     * @see http://www.php.net/glob 
    199197     */ 
    200     function listdirs($dir) 
    201     { 
     198    function listdirs($dir) { 
    202199        static $alldirs = array(); 
    203200        $dirs = glob($dir . '/*'); 
     
    216213     * @param string $path 絶対パス 
    217214     */ 
    218     function lfMkdirRecursive($path) 
    219     { 
     215    function lfMkdirRecursive($path) { 
    220216        $path = dirname($path); 
    221217 
     
    240236    } 
    241237 
    242     function makeDistInfo($bkupDistInfoArray) 
    243     { 
     238    function makeDistInfo($bkupDistInfoArray) { 
    244239        $src = "<?php\n" 
    245240             . '$distifo = array(' . "\n"; 
     
    253248    } 
    254249 
    255     function printLog($msg) 
    256     { 
     250    function printLog($msg) { 
    257251        GC_Utils_Ex::gfPrintLog($msg, DATA_REALDIR . 'logs/ownersstore_batch_update.log'); 
    258252    } 
Note: See TracChangeset for help on using the changeset viewer.