# HG changeset patch # User Brian Neal # Date 1299545433 0 # Node ID fe1896e14c11c8d8a20cba457017edece373c306 # Parent dd673fae508d3473fd4589cfa7fc890ba985a49b Fixing #184; fix typo in date template filter string that is causing the wrong date to be displayed on the max users online statistic. diff -r dd673fae508d -r fe1896e14c11 gpp/templates/forums/forum_stats_tag.html --- a/gpp/templates/forums/forum_stats_tag.html Mon Mar 07 01:22:49 2011 +0000 +++ b/gpp/templates/forums/forum_stats_tag.html Tue Mar 08 00:50:33 2011 +0000 @@ -4,6 +4,6 @@ The newest registered user is {{ latest_user }}. {% if stats %}
-The most users ever online was {{ stats.max_users }} on {{ stats.max_users_date|date:"P l, N n, Y" }}. +The most users ever online was {{ stats.max_users }} on {{ stats.max_users_date|date:"P l, N d, Y" }}. {% endif %}