Skip to content

Commit

Permalink
[1.0.X] Fixed #11512 -- Corrected unclosed tag in HTML on debug page.…
Browse files Browse the repository at this point in the history
… Thanks to rlaager for the report.

Merge of r11276 from trunk.


git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11278 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Jul 21, 2009
1 parent 29b53b2 commit dff276b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django/views/debug.py
Expand Up @@ -403,7 +403,7 @@ def empty_urlconf(request):
</tr> </tr>
<tr> <tr>
<th>Exception Value:</th> <th>Exception Value:</th>
<td><pre>{{ exception_value|escape }}<pre></td> <td><pre>{{ exception_value|escape }}</pre></td>
</tr> </tr>
<tr> <tr>
<th>Exception Location:</th> <th>Exception Location:</th>
Expand Down Expand Up @@ -608,6 +608,7 @@ def empty_urlconf(request):
<p>No POST data</p> <p>No POST data</p>
{% endif %} {% endif %}
<h3 id="cookie-info">COOKIES</h3> <h3 id="cookie-info">COOKIES</h3>
{% if request.COOKIES %} {% if request.COOKIES %}
<table class="req"> <table class="req">
Expand Down

0 comments on commit dff276b

Please sign in to comment.