فهرست منبع

[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);
     }
   }