Changeset 21596 for branches/version-2_12-dev/data/class/batch
- Timestamp:
- 2012/03/06 22:37:30 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/batch/SC_Batch_Update.php
r21593 r21596 218 218 // HTML_REALDIR/DATA_REALDIRの判別 219 219 if (preg_match("@\Q".HTML_REALDIR."\E@", $path) > 0) { 220 $dir = str_replace( "\\", '/', HTML_REALDIR);220 $dir = str_replace('\\', '/', HTML_REALDIR); 221 221 $path = preg_replace("@\Q".HTML_REALDIR."\E@", '', $path); 222 222 } elseif (preg_match("@\Q".DATA_REALDIR."\E@", $path) > 0) { 223 $dir = str_replace( "\\", '/', DATA_REALDIR);223 $dir = str_replace('\\', '/', DATA_REALDIR); 224 224 $path = preg_replace("@\Q".DATA_REALDIR."\E@", '', $path); 225 225 } else { 226 226 $dir = ''; 227 227 } 228 $arrDirs = explode('/', str_replace( "\\", '/', $path));228 $arrDirs = explode('/', str_replace('\\', '/', $path)); 229 229 230 230 foreach ($arrDirs as $n) {
Note: See TracChangeset
for help on using the changeset viewer.
