Skip to content

Commit

Permalink
[WebProfilerBundle] replaced yaml_dump by json_encode to make the Web…
Browse files Browse the repository at this point in the history
… Profiler independent from the YAML component
  • Loading branch information
fabpot committed Dec 16, 2012
1 parent 1c92307 commit 163564b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{% for key in bag.keys|sort %}
<tr>
<th>{{ key }}</th>
<td>{{ bag.get(key)|yaml_dump }}</td>
<td>{{ bag.get(key)|json_encode }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{% for key in data|keys|sort %}
<tr>
<th>{{ key }}</th>
<td>{{ data[key]|yaml_dump }}</td>
<td>{{ data[key]|json_encode }}</td>
</tr>
{% endfor %}
</tbody>
Expand Down

0 comments on commit 163564b

Please sign in to comment.