Changeset 2721602
- Timestamp:
- 05/10/2022 11:47:18 PM (4 years ago)
- Location:
- my-simple-space
- Files:
-
- 4 edited
- 1 copied
-
tags/1.2.9 (copied) (copied from my-simple-space/trunk)
-
tags/1.2.9/my-simple-space.php (modified) (1 diff)
-
tags/1.2.9/readme.txt (modified) (1 diff)
-
trunk/my-simple-space.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
my-simple-space/tags/1.2.9/my-simple-space.php
r2721582 r2721602 220 220 221 221 $total_size = 0; 222 foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator:: CURRENT_AS_PATHNAME) ) as $file ) {222 foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::SKIP_DOTS ) ) as $file ) { 223 223 $total_size += $file->getSize(); 224 224 } -
my-simple-space/tags/1.2.9/readme.txt
r2721577 r2721602 44 44 45 45 = 1.2.9 = 46 * Corrected error in reverted \FilesystemIterator::FOLLOW_SYMLINKS. Switched to \FilesystemIterator:: CURRENT_AS_PATHNAME, as following symlinks causes errors on some hosting platforms.46 * Corrected error in reverted \FilesystemIterator::FOLLOW_SYMLINKS. Switched to \FilesystemIterator::SKIP_DOTS, as following symlinks causes errors on some hosting platforms. 47 47 48 48 = 1.2.8 = -
my-simple-space/trunk/my-simple-space.php
r2721582 r2721602 220 220 221 221 $total_size = 0; 222 foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator:: CURRENT_AS_PATHNAME) ) as $file ) {222 foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::SKIP_DOTS ) ) as $file ) { 223 223 $total_size += $file->getSize(); 224 224 } -
my-simple-space/trunk/readme.txt
r2721577 r2721602 44 44 45 45 = 1.2.9 = 46 * Corrected error in reverted \FilesystemIterator::FOLLOW_SYMLINKS. Switched to \FilesystemIterator:: CURRENT_AS_PATHNAME, as following symlinks causes errors on some hosting platforms.46 * Corrected error in reverted \FilesystemIterator::FOLLOW_SYMLINKS. Switched to \FilesystemIterator::SKIP_DOTS, as following symlinks causes errors on some hosting platforms. 47 47 48 48 = 1.2.8 =
Note: See TracChangeset
for help on using the changeset viewer.