Explorar el Código

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

Fabien Potencier hace 14 años
padre
commit
6b0a9ff784
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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);
         }
     }