Skip to content

Commit 01b2cd9

Browse files
committed
bug #6320 Fixed typo in path (timhovius)
This PR was submitted for the 2.8 branch but it was merged into the 2.7 branch instead (closes #6320). Discussion ---------- Fixed typo in path The path in the config.yml is wrong and causes an error Commits ------- ff32bd8 Changed folder name to lowercase (best practises) a66c49a Fixed typo in path
2 parents 82ba7db + ff32bd8 commit 01b2cd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/form/create_custom_field_type.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ link for details), create a ``gender_widget`` block to handle this:
115115

116116
.. code-block:: html+twig
117117

118-
{# app/Resources/views/Form/fields.html.twig #}
118+
{# app/Resources/views/form/fields.html.twig #}
119119
{% block gender_widget %}
120120
{% spaceless %}
121121
{% if expanded %}
@@ -136,7 +136,7 @@ link for details), create a ``gender_widget`` block to handle this:
136136

137137
.. code-block:: html+php
138138

139-
<!-- app/Resources/views/Form/gender_widget.html.php -->
139+
<!-- app/Resources/views/form/gender_widget.html.php -->
140140
<?php if ($expanded) : ?>
141141
<ul <?php $view['form']->block($form, 'widget_container_attributes') ?>>
142142
<?php foreach ($form as $child) : ?>

0 commit comments

Comments
 (0)