8000 Merge branch '2.8' into 3.3 · symfony/symfony-docs@d6f97f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit d6f97f0

Browse files
committed
Merge branch '2.8' into 3.3
* 2.8: Fixed the default value for toolbar configuration Close the tag minor #9051 Update routing.rst (rickwest)
2 parents 0387f3b + d3dd2f2 commit d6f97f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

reference/configuration/web_profiler.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Configuration
2323
toolbar
2424
~~~~~~~
2525

26-
**type**: ``boolean`` **default**: ``true``
26+
**type**: ``boolean`` **default**: ``false``
2727

2828
It enables and disables the toolbar entirely. Usually you set this to ``true``
2929
in the ``dev`` and ``test`` environments and to ``false`` in the ``prod``

reference/forms/types/collection.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ And update the template as follows:
212212
213213
<a href="#"
214214
class="add-another-collection-widget"
215-
data-list="#email-field-list>Add another email</a>
215+
data-list="#email-field-list">Add another email</a>
216216

217217
{# ... #}
218218
{{ form_end(form) }}

routing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ But if you pass extra ones, they will be added to the URI as a query string::
658658

659659
$this->get('router')->generate('blog', array(
660660
'page' => 2,
661-
'category' => 'Symfony'
661+
'category' => 'Symfony',
662662
));
663663
// /blog/2?category=Symfony
664664

0 commit comments

Comments
 (0)
0