Merge branch '3.2'

* 3.2:
  [Profiler][Form] Fix form profiler errors profiler_dump
This commit is contained in:
Nicolas Grekas 2017-01-12 20:46:56 +01:00
commit c527f10b08

View File

@ -492,7 +492,9 @@
<td>
{% if error.trace %}
<span class="newline">Caused by:</span>
{{ profiler_dump(error.trace, maxDepth=2) }}
{% for stacked in error.trace %}
{{ profiler_dump(stacked) }}
{% endfor %}
{% else %}
<em>Unknown.</em>
{% endif %}