Changeset 16168 for branches/2.4/admin/include
- Timestamp:
- Jun 29, 2012, 6:26:22 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.4/admin/include/functions.php
r13651 r16168 2361 2361 } 2362 2362 $path = substr_replace($path, $pattern, $dot, 0); 2363 foreach( glob(PHPWG_ROOT_PATH.PWG_DERIVATIVE_DIR.$path) as $file) 2364 { 2365 @unlink($file); 2363 if ( ($glob=glob(PHPWG_ROOT_PATH.PWG_DERIVATIVE_DIR.$path)) !== false) 2364 { 2365 foreach( $glob as $file) 2366 { 2367 @unlink($file); 2368 } 2366 2369 } 2367 2370 }
Note: See TracChangeset
for help on using the changeset viewer.