Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9de898d

Browse files
committed
[Form][Profiler] Fixes form collector triggering deprecations
1 parentd0aa4d9 commit9de898d

File tree

1 file changed

+7
-7
lines changed
  • src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector

1 file changed

+7
-7
lines changed

‎src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/form.html.twig‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -525,21 +525,21 @@
525525
<thclass="font-normal"scope="row">Model Format</th>
526526
<td>
527527
{%ifdata.default_data.modelisdefined %}
528-
{{ profiler_dump(data.default_data.model) }}
528+
{{ profiler_dump(data.default_data.seek('model')) }}
529529
{%else %}
530530
<emclass="font-normal text-muted">same as normalized format</em>
531531
{%endif %}
532532
</td>
533533
</tr>
534534
<tr>
535535
<thclass="font-normal"scope="row">Normalized Format</th>
536-
<td>{{ profiler_dump(data.default_data.norm) }}</td>
536+
<td>{{ profiler_dump(data.default_data.seek('norm')) }}</td>
537537
</tr>
538538
<tr>
539539
<thclass="font-normal"scope="row">View Format</th>
540540
<td>
541541
{%ifdata.default_data.viewisdefined %}
542-
{{ profiler_dump(data.default_data.view) }}
542+
{{ profiler_dump(data.default_data.seek('view')) }}
543543
{%else %}
544544
<emclass="font-normal text-muted">same as normalized format</em>
545545
{%endif %}
@@ -571,21 +571,21 @@
571571
<thclass="font-normal"scope="row">View Format</th>
572572
<td>
573573
{%ifdata.submitted_data.viewisdefined %}
574-
{{ profiler_dump(data.submitted_data.view) }}
574+
{{ profiler_dump(data.submitted_data.seek('view')) }}
575575
{%else %}
576576
<emclass="font-normal text-muted">same as normalized format</em>
577577
{%endif %}
578578
</td>
579579
</tr>
580580
<tr>
581581
<thclass="font-normal"scope="row">Normalized Format</th>
582-
<td>{{ profiler_dump(data.submitted_data.norm) }}</td>
582+
<td>{{ profiler_dump(data.submitted_data.seek('norm')) }}</td>
583583
</tr>
584584
<tr>
585585
<thclass="font-normal"scope="row">Model Format</th>
586586
<td>
587587
{%ifdata.submitted_data.modelisdefined %}
588-
{{ profiler_dump(data.submitted_data.model) }}
588+
{{ profiler_dump(data.submitted_data.seek('model')) }}
589589
{%else %}
590590
<emclass="font-normal text-muted">same as normalized format</em>
591591
{%endif %}
@@ -630,7 +630,7 @@
630630
{%ifresolved_option_value==option_value %}
631631
<emclass="font-normal text-muted">same as passed value</em>
632632
{%else %}
633-
{{ profiler_dump(data.resolved_options[option]) }}
633+
{{ profiler_dump(data.resolved_options.seek(option)) }}
634634
{%endif %}
635635
</td>
636636
</tr>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp