Skip to content

Commit

Permalink
fix service registration
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzmg committed Dec 5, 2024
1 parent 70884cd commit 358d8c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/DependencyInjection/ContaoFileAccessExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function load(array $configs, ContainerBuilder $container): void
$container->setParameter('contao_file_access.protected_images_cache', $config['protected_images_cache']);
$container->setParameter('contao_file_access.protect_resized_images', $config['protect_resized_images']);

$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('services.yml');
$loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../../config'));
$loader->load('services.yaml');
}
}

0 comments on commit 358d8c2

Please sign in to comment.