merged branch dlsniper/small-wdt-fix (PR #4063)

Commits
-------

e1cf54c Small fixes for the WDT

Discussion
----------

[WebProfilerBundle] Small fixes for the WDT

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

These are some very small HTML fixes for the new WDT. Tests are passing but Travis is acting strange at the moment.
This commit is contained in:
Fabien Potencier 2012-04-22 18:20:21 +02:00
commit 9d5dc7a078
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@
<form id="priority-form" action="" method="get" style="display: inline">
<input type="hidden" name="panel" value="logger" />
<label for="priority">Priority</label>
<select name="priority" onchange="document.getElementById('priority-form').submit(); ">
<select id="priority" name="priority" onchange="document.getElementById('priority-form').submit(); ">
{% for value, text in { 100: 'DEBUG', 200: 'INFO', 300: 'WARNING', 400: 'ERROR', 500: 'CRITICAL', 550: 'ALERT' } %}
<option value="{{ value }}"{{ value == priority ? ' selected' : '' }}>{{ text }}</option>
{% endfor %}

View File

@ -41,3 +41,4 @@
<em><small>Note: The above matching is based on the configuration for the current router which might differ from
the configuration used while routing this request.</small></em>
</li>
</ul>