summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 %}