Changeset 8406
- Timestamp:
- 05/10/2014 01:13:18 AM (12 years ago)
- File:
-
- 1 edited
-
trunk/tests/phpunit/testcases/core/avatars.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/testcases/core/avatars.php
r8395 r8406 31 31 32 32 private function rrmdir( $dir ) { 33 foreach ( glob( $dir . '/*' ) as $file ) { 33 $d = glob( $dir . '/*' ); 34 35 if ( empty( $d ) ) { 36 return; 37 } 38 39 foreach ( $d as $file ) { 34 40 if ( is_dir( $file ) ) { 35 41 $this->rrmdir( $file );
Note: See TracChangeset
for help on using the changeset viewer.