summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-09-03 22:58:12 +0700
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2014-09-03 22:58:12 +0700
commitbc1acd6f3e720cdff8d5d8af07d6ade216c877f4 (patch)
tree53952c46b5c6c5ec83f32a2a05330214b87b20ea
parent8981aa8ca09ca575cb9a4b92fc89a4e49e3288b9 (diff)
downloadaskbot-bc1acd6f3e720cdff8d5d8af07d6ade216c877f4.tar.gz
askbot-bc1acd6f3e720cdff8d5d8af07d6ade216c877f4.tar.bz2
askbot-bc1acd6f3e720cdff8d5d8af07d6ade216c877f4.zip
a bug fix follow up to prev commit
-rw-r--r--askbot/templates/widgets/user_list.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/templates/widgets/user_list.html b/askbot/templates/widgets/user_list.html
index 6f3c97cb..343977f7 100644
--- a/askbot/templates/widgets/user_list.html
+++ b/askbot/templates/widgets/user_list.html
@@ -2,7 +2,7 @@
{% if users %}
<ul class="user-list">
{% for user in users %}
- <li>{{ macros.user_card(user, karma_mode=karma_mode, badges_mode=badges_mode) }}</li>
+ <li>{{ macros.user_card(user) }}</li>
{% endfor %}
</ul>
{% endif %}