Browse Source

Merge branch 'master' of github.com:sh4nks/flaskbb

sh4nks 10 years ago
parent
commit
8967830a2d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      flaskbb/templates/forum/online_users.html

+ 1 - 1
flaskbb/templates/forum/online_users.html

@@ -12,7 +12,7 @@
     {% if config["REDIS_ENABLED"] %}
     <a href="{{ url_for('user.profile', username=user) }}">{{ user }}<a>{% if not loop.last %}, {% endif %}
     {% else %}
-    <a href="{{ url_for('user.profile', username=user) }}">{{ user.username }}<a>{% if not loop.last %}, {% endif %}
+    <a href="{{ url_for('user.profile', username=user.username) }}">{{ user.username }}<a>{% if not loop.last %}, {% endif %}
     {% endif %}
 {% endfor %}