File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Override the ``cache`` Directory
30
30
--------------------------------
31
31
32
32
You can change the default cache directory by overriding the ``getCacheDir `` method
33
- in the ``AppKernel `` class of you application::
33
+ in the ``AppKernel `` class of your application::
34
34
35
35
// app/AppKernel.php
36
36
Original file line number Diff line number Diff line change @@ -767,8 +767,8 @@ will be able to change the widget for each task as follows:
767
767
768
768
{% block _tasks_entry_widget %}
769
769
<tr>
770
- <td>{{ form_widget(task .task) }}</td>
771
- <td>{{ form_widget(task .dueDate) }}</td>
770
+ <td>{{ form_widget(form .task) }}</td>
771
+ <td>{{ form_widget(form .dueDate) }}</td>
772
772
</tr>
773
773
{% endblock %}
774
774
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ block and set the value of two variables called ``icon`` and ``text``:
160
160
{% endset %}
161
161
162
162
{# the 'link' value set to 'false' means that this panel doesn't
163
- show a section in the web profiler (default is 'true'). #}
163
+ show a section in the web profiler #}
164
164
{{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { link: false }) }}
165
165
{% endblock %}
166
166
@@ -203,7 +203,7 @@ must also define additional blocks:
203
203
</div>
204
204
{% endset %}
205
205
206
- {{ include('@WebProfiler/Profiler/toolbar_item.html.twig') }}
206
+ {{ include('@WebProfiler/Profiler/toolbar_item.html.twig', { 'link': true } ) }}
207
207
{% endblock %}
208
208
209
209
{% block head %}
You can’t perform that action at this time.
0 commit comments