Skip to content

Commit

Permalink
Merge pull request #9 from dbergunder/Fix-Configuration-Error-In-Exte…
Browse files Browse the repository at this point in the history
…nsion

Fix configuration error in extension.
  • Loading branch information
jschroed91 committed Mar 16, 2016
2 parents 1f54901 + 785fc79 commit 064eae6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/CaxyHtmlDiffExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function load(array $configs, ContainerBuilder $container)
$cacheDriverId = $this->loadCacheDriver('doctrine_cache_driver', $config['doctrine_cache_driver'], $container);
}

if (!isset($config['purifier_cache_location']) {
if (!isset($config['purifier_cache_location'])) {
$config['purifier_cache_location'] = $container->getParameter('kernel.cache_dir');
}

Expand Down

0 comments on commit 064eae6

Please sign in to comment.