Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

fixed wrong prefix for publish workflow configuration #581

Merged
merged 1 commit into from
Oct 6, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bundles/menu/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ To disable the menu content voter, use:

.. code-block:: yaml

cmf_menu:
cmf_core:
publish_workflow:
enabled: false

Expand All @@ -279,7 +279,7 @@ To disable the menu content voter, use:
<?xml version="1.0" charset="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services">

<config xmlns="http://cmf.symfony.com/schema/dic/menu">
<config xmlns="http://cmf.symfony.com/schema/dic/core">
<publish-workflow
enabled="false"
/>
Expand All @@ -288,7 +288,7 @@ To disable the menu content voter, use:

.. code-block:: php

$container->loadFromExtension('cmf_menu', array(
$container->loadFromExtension('cmf_core', array(
'publish_workflow' => array(
'enabled' => false,
),
Expand Down