Преглед изворни кода

[WebBundle] fixed renderDir to not call renderFile on not files

Bulat (Hacker) Shakirzyanov пре 15 година
родитељ
комит
6d691052ac
1 измењених фајлова са 5 додато и 0 уклоњено
  1. 5 0
      src/Symfony/Framework/WebBundle/Util/Mustache.php

+ 5 - 0
src/Symfony/Framework/WebBundle/Util/Mustache.php

@@ -34,6 +34,11 @@ class Mustache
   {
     foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($dir), \RecursiveIteratorIterator::LEAVES_ONLY) as $file)
     {
+      if ($file->isDot())
+      {
+        continue;
+      }
+
       static::renderFile((string) $file, $parameters);
     }
   }