Skip to content

Commit

Permalink
Add escaping to properties in change listings
Browse files Browse the repository at this point in the history
  • Loading branch information
Amber Yust committed Dec 1, 2010
1 parent 6fb3600 commit 443b4f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/buildbot/status/web/templates/change_macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ <h3>Properties</h3>
<table class="info">
{% for p in c.properties %}
<tr class="{{ loop.cycle('alt') }}">
<td class="left">{{ p[0]|capitalize }}</td>
<td>{{ p[1] }}</td>
<td class="left">{{ p[0]|capitalize|e }}</td>
<td>{{ p[1]|e }}</td>
</tr>
{% endfor %}
</table>
Expand Down

0 comments on commit 443b4f1

Please sign in to comment.