Skip to content

Commit

Permalink
Fix case (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
baiiko authored and core23 committed Feb 24, 2017
1 parent 3e899b5 commit 75dd661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DependencyInjection/SonataTranslationExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function load(array $configs, ContainerBuilder $container)
$loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));

$bundles = $container->getParameter('kernel.bundles');
if (array_key_exists('SonataDoctrineOrmAdminBundle', $bundles)) {
if (array_key_exists('SonataDoctrineORMAdminBundle', $bundles)) {
$loader->load('service_orm.xml');
}

Expand Down

0 comments on commit 75dd661

Please sign in to comment.