merged branch aboks/doctrine-profiler-view (PR #2897)

Commits
-------

662fdc3 [DoctrineBundle] Fixed incorrectly shown params

Discussion
----------

Doctrine profiler view

Bug fix: yes
Feature addition: no
Backwards compatibility break: no
Symfony2 tests pass: yes
Fixes the following tickets: -
Todo: -

After the changes in #2733, the parameters to Doctrine queries were
always shown as 'Array' in the profiler. This commit puts back the
yaml_encode that is still needed after all.
This commit is contained in:
Fabien Potencier 2011-12-16 11:14:41 +01:00
commit af9ddc0f10

View File

@ -36,7 +36,7 @@
<code>{{ query.sql }}</code>
</div>
<small>
<strong>Parameters</strong>: {{ query.params }}<br />
<strong>Parameters</strong>: {{ query.params|yaml_encode }}<br />
<strong>Time</strong>: {{ '%0.2f'|format(query.executionMS * 1000) }} ms
</small>
</li>