Skip to content

Commit

Permalink
[HttpKernel] changed the compiled class cache to non-adaptative (as i…
Browse files Browse the repository at this point in the history
…t is now loaded very early)
  • Loading branch information
fabpot committed Jul 21, 2011
1 parent e776d5d commit 6b0a9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpKernel/Kernel.php
Expand Up @@ -402,7 +402,7 @@ public function loadClassCache($name = 'classes', $extension = '.php')
}

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

Expand Down

0 comments on commit 6b0a9ff

Please sign in to comment.