Plugin Directory

Changeset 2721602


Ignore:
Timestamp:
05/10/2022 11:47:18 PM (4 years ago)
Author:
mannweb
Message:

Correcting 1.2.9 Tag

Location:
my-simple-space
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • my-simple-space/tags/1.2.9/my-simple-space.php

    r2721582 r2721602  
    220220
    221221            $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 ) {
    223223                $total_size += $file->getSize();
    224224            }
  • my-simple-space/tags/1.2.9/readme.txt

    r2721577 r2721602  
    4444
    4545= 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.
    4747
    4848= 1.2.8 =
  • my-simple-space/trunk/my-simple-space.php

    r2721582 r2721602  
    220220
    221221            $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 ) {
    223223                $total_size += $file->getSize();
    224224            }
  • my-simple-space/trunk/readme.txt

    r2721577 r2721602  
    4444
    4545= 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.
    4747
    4848= 1.2.8 =
Note: See TracChangeset for help on using the changeset viewer.