Skip to content

Commit

Permalink
adjust to changed configuration format of seo bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
dbu committed May 8, 2014
1 parent 9948cf0 commit 20c1d33
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions DependencyInjection/CmfCoreExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ public function prepend(ContainerBuilder $container)
'enabled' => $persistenceConfig['enabled'],
),
),
'sonata_admin_extension' => $persistenceConfig['use_sonata_admin'],
'sonata_admin_extension' => array(
'enabled' => $persistenceConfig['use_sonata_admin'],
),
);
break;
}
Expand Down Expand Up @@ -228,7 +230,9 @@ public function prepend(ContainerBuilder $container)
'enabled' => $persistenceConfig['enabled'],
),
),
'sonata_admin_extension' => $persistenceConfig['use_sonata_admin'],
'sonata_admin_extension' => array(
'enabled' => $persistenceConfig['use_sonata_admin'],
),
);
break;
}
Expand Down

0 comments on commit 20c1d33

Please sign in to comment.