Ignore:
Timestamp:
2012/03/06 22:37:30 (14 years ago)
Author:
Seasoft
Message:

#1613 (typo修正・ソース整形・ソースコメントの改善)

File:
1 edited

Legend:

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

    r21593 r21596  
    218218        // HTML_REALDIR/DATA_REALDIRの判別 
    219219        if (preg_match("@\Q".HTML_REALDIR."\E@", $path) > 0) { 
    220             $dir = str_replace("\\", '/', HTML_REALDIR); 
     220            $dir = str_replace('\\', '/', HTML_REALDIR); 
    221221            $path = preg_replace("@\Q".HTML_REALDIR."\E@", '', $path); 
    222222        } elseif (preg_match("@\Q".DATA_REALDIR."\E@", $path) > 0) { 
    223             $dir = str_replace("\\", '/', DATA_REALDIR); 
     223            $dir = str_replace('\\', '/', DATA_REALDIR); 
    224224            $path = preg_replace("@\Q".DATA_REALDIR."\E@", '', $path); 
    225225        } else { 
    226226            $dir = ''; 
    227227        } 
    228         $arrDirs = explode('/', str_replace("\\", '/', $path)); 
     228        $arrDirs = explode('/', str_replace('\\', '/', $path)); 
    229229 
    230230        foreach ($arrDirs as $n) { 
Note: See TracChangeset for help on using the changeset viewer.