From db359defd24559846d4e8dbc16cb7bbc21dd8035 Mon Sep 17 00:00:00 2001 From: Ahmed TAILOULOUTE Date: Thu, 23 Mar 2017 19:58:24 +0000 Subject: [PATCH] Update acl.rst --- security/acl.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/security/acl.rst b/security/acl.rst index a4d8b6c27ea..e8b9254eea3 100644 --- a/security/acl.rst +++ b/security/acl.rst @@ -77,10 +77,12 @@ First, you need to configure the connection the ACL system is supposed to use: .. code-block:: php // app/config/security.php - $container->loadFromExtension('security', 'acl', array( + $container->loadFromExtension('security', array( // ... - - 'connection' => 'default', + + 'acl' => array( + 'connection' => 'default', + ), )); .. note::