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

Skip to content

Commit d3dd2f2

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

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
@@ -213,7 +213,7 @@ And update the template as follows:
213213
214214
<a href="#"
215215
class="add-another-collection-widget"
216-
data-list="#email-field-list>Add another email</a>
216+
data-list="#email-field-list">Add another email</a>
217217

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

routing.rst

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

652652
$this->get('router')->generate('blog', array(
653653
'page' => 2,
654-
'category' => 'Symfony'
654+
'category' => 'Symfony',
655655
));
656656
// /blog/2?category=Symfony
657657

0 commit comments

Comments
 (0)
0