bug #17455 Fixed form types in profiler (javiereguiluz)

This PR was merged into the 3.0 branch.

Discussion
----------

Fixed form types in profiler

| Q             | A
| ------------- | ---
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | #17453
| License       | MIT
| Doc PR        | -

This only affects to Symfony 3.0 and higher.

| Before | After
| --------- | -------
| ![form_types_before](https://cloud.githubusercontent.com/assets/73419/12448020/aa59c134-bf73-11e5-8ce4-205a97c50339.png) | ![form_types_after](https://cloud.githubusercontent.com/assets/73419/12448024/acad1a6c-bf73-11e5-98cc-2d9ba11d1e29.png)

Commits
-------

12d447d Fixed form types in profiler
This commit is contained in:
Fabien Potencier 2016-01-20 13:01:27 +01:00
commit 1dfb8d21fb
1 changed files with 1 additions and 1 deletions

View File

@ -437,7 +437,7 @@
<div class="toggle-icon empty"></div>
{% endif %}
{{ name|default('(no name)') }} {% if data.type_class is defined and data.type is defined %}[<abbr title="{{ data.type_class }}">{{ data.type }}</abbr>]{% endif %}
{{ name|default('(no name)') }} {% if data.type_class is defined %}[<abbr title="{{ data.type_class }}">{{ data.type_class|split('\\')|last }}</abbr>]{% endif %}
{% if data.errors is defined and data.errors|length > 0 %}
<div class="badge-error">{{ data.errors|length }}</div>