summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-10-19 18:40:11 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-10-19 18:40:11 -0400
commitdd0c5f686d026b582d13dde806cf5307497f25a4 (patch)
tree4130c34e9bfeee20f1c8b633ecddca6098dc86be
parent5461d6e2b33b5a40be28eebd91f2d9b933862a5e (diff)
downloadaskbot-dd0c5f686d026b582d13dde806cf5307497f25a4.tar.gz
askbot-dd0c5f686d026b582d13dde806cf5307497f25a4.tar.bz2
askbot-dd0c5f686d026b582d13dde806cf5307497f25a4.zip
fixed a bug in commenting widget
-rw-r--r--askbot/skins/default/templates/macros.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/skins/default/templates/macros.html b/askbot/skins/default/templates/macros.html
index 75cd550a..aa982f1b 100644
--- a/askbot/skins/default/templates/macros.html
+++ b/askbot/skins/default/templates/macros.html
@@ -261,7 +261,7 @@ poor design of the data or methods on data objects #}
{% for comment in comments %}
<div class="comment" id="comment-{{comment.id}}">
{{comment.html}}
- - <a class="comment-user" href="{{user.get_profile_url()}}">{{comment.user.username}}</a>
+ - <a class="comment-user" href="{{comment.user.get_profile_url()}}">{{comment.user.username}}</a>
<span class="comment-age">&nbsp;({{comment.added_at|diff_date}})</span>
{% if user|can_delete_comment(comment) %}
<img class="delete-icon"