diff options
author | Chris Ball <cjb@laptop.org> | 2010-09-06 15:54:10 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2010-09-06 15:54:10 -0400 |
commit | 3099e08c62410f16e99393ba09b36e79c0fa53ab (patch) | |
tree | b656a44d09aca7c12b3f3492cff8c603bf74a4ec /interfaces | |
parent | c378d80a27d2f6d28fe0a4ffea9cc4fce7452b0b (diff) | |
download | bugseverywhere-3099e08c62410f16e99393ba09b36e79c0fa53ab.tar.gz |
cfbe: API: bug.comment.From -> bug.comment.author
Diffstat (limited to 'interfaces')
-rw-r--r-- | interfaces/web/templates/bug.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interfaces/web/templates/bug.html b/interfaces/web/templates/bug.html index 66993de..b6986a9 100644 --- a/interfaces/web/templates/bug.html +++ b/interfaces/web/templates/bug.html @@ -140,7 +140,7 @@ <h3>Comments</h3> {% for comment in bug.comments() %} <div class="bug-comment"> - <h4 class="bug-comment-header">{{ comment.From|striptags|e }} said:</h4> + <h4 class="bug-comment-header">{{ comment.author|striptags|e }} said:</h4> <p class="bug-comment-body">{{ comment.body|trim|e }}</p> <p class="bug-comment-footer">on {{ comment.time|datetimeformat }}</p> </div> |