Fabien Potencier пре 15 година
родитељ
комит
6060d015eb
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Symfony/Components/Finder/Iterator/LimitDepthFilterIterator.php

+ 1 - 1
src/Symfony/Components/Finder/Iterator/LimitDepthFilterIterator.php

@@ -50,7 +50,7 @@ class LimitDepthFilterIterator extends \FilterIterator
   {
     $fileinfo = $this->getInnerIterator()->current();
 
-    $depth = substr_count(str_replace('\\', '/', $fileinfo->getPath()), '/') - substr_count(str_replace('\\', '/', $this->baseDir->getPathname()), '/');
+    $depth = substr_count($fileinfo->getPath(), DIRECTORY_SEPARATOR) - substr_count($this->baseDir->getPathname(), DIRECTORY_SEPARATOR);
 
     if ($depth > $this->maxDepth)
     {