ソースを参照

[HttpKernel] changed the compiled class cache to non-adaptative (as it is now loaded very early)

Fabien Potencier 14 年 前
コミット
6b0a9ff784
1 ファイル変更1 行追加1 行削除
  1. 1 1
      src/Symfony/Component/HttpKernel/Kernel.php

+ 1 - 1
src/Symfony/Component/HttpKernel/Kernel.php

@@ -402,7 +402,7 @@ abstract class Kernel implements KernelInterface
         }
 
         if ($this->container->hasParameter('kernel.compiled_classes')) {
-            ClassCollectionLoader::load($this->container->getParameter('kernel.compiled_classes'), $this->getCacheDir(), $name, $this->debug, true, $extension);
+            ClassCollectionLoader::load($this->container->getParameter('kernel.compiled_classes'), $this->getCacheDir(), $name, $this->debug, false, $extension);
         }
     }