Skip to content

Commit

Permalink
bug #52152 [WebProfilerBundle] Fix generated application link (alamir…
Browse files Browse the repository at this point in the history
…ault)

This PR was merged into the 6.4 branch.

Discussion
----------

[WebProfilerBundle] Fix generated application link

| Q             | A
| ------------- | ---
| Branch?       | 6.4
| Bug fix?      | yes
| New feature?  | no <!-- please update src/**/CHANGELOG.md files -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tickets       | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead -->
| License       | MIT

I played a little bit with the new Profiling command #47416 (I love it !), and found that `type=command` is missing in one URL

![image](https://github.com/symfony/symfony/assets/9253091/c0ba0a81-e906-4223-b91d-7b91ceac2309)

Commits
-------

477d849 [WebProfilerBundle] Fix generated application link
  • Loading branch information
fabpot committed Oct 19, 2023
2 parents 1a72bd5 + 477d849 commit 67ecd29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<dt>Application</dt>
<dd>
<a href="{{ path('_profiler_search_results', { token: token, limit: 10, ip: profile.ip }) }}">{{ profile.ip }}</a>
<a href="{{ path('_profiler_search_results', { token: token, limit: 10, ip: profile.ip, type: 'command' }) }}">{{ profile.ip }}</a>
</dd>

<dt>Profiled on</dt>
Expand Down

0 comments on commit 67ecd29

Please sign in to comment.