Переглянути джерело

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