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

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