Yes, I noticed this myself yesterday and was about to post about this. Working on figuring the cause. Apologies for the delay.
Problem found. It was caused when adding 2 lines in 1.2.4 and a line I apparently put in extra code, which causing it to calculate from the root folder. Pushing up fix in a few minutes.
Stripping these two lines:
$path .= '.';
$path = pathinfo( $path , PATHINFO_DIRNAME );
And replacing this line:
foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::FOLLOW_SYMLINKS ) ) as $file ) {
With this:
foreach( new \RecursiveIteratorIterator( new \RecursiveDirectoryIterator( $path, \FilesystemIterator::CURRENT_AS_FILEINFO ) ) as $file ) {
To correct incorrect returned values from the change to 1.2.4
1.2.5 released, which should fix this issue.
Man ! That’s just great support !
I confirm the problem is solved by the last update…
Sorry for the delay here, I was on holiday…
Huge thanks for the so quick job !
Eric Collart
Awesome to here Eric. Glad I was able to fix it 😀