Ignore:
Timestamp:
2011/01/23 20:34:00 (13 years ago)
Author:
Seasoft
Message:

#626(表記の統一性の向上) 対応漏れ

  • EC-CUBE標準規約から外れる関数名を修正 (#700 でのマージ漏れか、コミュニティ版固有の関数があったと考えられる。)
File:
1 edited

Legend:

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

    r19805 r20032  
    5858        $bkupPath = DATA_REALDIR . 'downloads/backup/update_' . time() . '/'; 
    5959        $bkupPathFile = $bkupPath . 'files/'; 
    60         $this->mkdir_p($bkupPathFile . 'dummy'); 
     60        $this->lfMkdirRecursive($bkupPathFile . 'dummy'); 
    6161 
    6262        $arrLog = array( 
     
    149149                        if (!$handle) { 
    150150                            // ディレクトリ作成を行ってリトライ 
    151                             $this->mkdir_p($out); 
     151                            $this->lfMkdirRecursive($out); 
    152152                            $handle = @fopen($out, "w"); 
    153153                            if (!$handle) { 
     
    216216     * @param string $path 絶対パス 
    217217     */ 
    218     function mkdir_p($path){ 
     218    function lfMkdirRecursive($path){ 
    219219        $path = dirname($path); 
    220220         
Note: See TracChangeset for help on using the changeset viewer.