Skip to content

Commit c2ffa61

Browse files
committed
bug #22874 [WebProfilerBundle] Fix sub-requests display in time profiler panel (nicolas-grekas)
This PR was merged into the 3.2 branch. Discussion ---------- [WebProfilerBundle] Fix sub-requests display in time profiler panel | Q | A | ------------- | --- | Branch? | 3.2 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #21911 | License | MIT | Doc PR | - Commits ------- d715cc4 [WebProfilerBundle] Fix sub-requests display in time profiler panel
2 parents 7fbda2e + d715cc4 commit c2ffa61

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@
107107
</form>
108108

109109
{% if profile.parent %}
110-
<h3>
111-
Sub-Request {{ profile.getcollector('request').requestattributes.get('_controller') }}
110+
<h3 class="dump-inline">
111+
Sub-Request {{ profiler_dump(profile.getcollector('request').requestattributes.get('_controller')) }}
112112
<small>
113113
{{ collector.events.__section__.duration }} ms
114114
<a class="newline" href="{{ path('_profiler', { token: profile.parent.token, panel: 'time' }) }}">Return to parent request</a>

0 commit comments

Comments
 (0)