diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-02-09 14:42:38 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2016-02-09 14:42:38 +0000 |
commit | a92cb4d9b33b48376cf3b66a76e2503c786c28e8 (patch) | |
tree | 3dc75b376d7b28e2bff36323562cd23f49714e58 /templates | |
parent | cf80773fa925f36a7c43b5f7eb1bcf7f56593796 (diff) |
Fix use of incorrect variable in summary stats.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/status/stats.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/status/stats.html b/templates/web/base/status/stats.html index 9cc250dcb..f847db2ef 100644 --- a/templates/web/base/status/stats.html +++ b/templates/web/base/status/stats.html @@ -5,7 +5,7 @@ total_problems_users = total_problems_users | format_number; comments_confirmed = (comments.confirmed || 0) | format_number; alerts_1 = alerts.1 | format_number; - alerts_0 = alerts.1 | format_number; + alerts_0 = alerts.0 | format_number; questionnaires_total = questionnaires.total | format_number; questionnaires_1 = questionnaires.1 | format_number; total_bodies = total_bodies | format_number; |