diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-06-08 12:31:46 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2016-07-06 12:52:37 +0100 |
commit | 49782c333a340a667009eed261d0ef0ceb419f88 (patch) | |
tree | ced110d72f6e8684e6287c8e14e9c54c0b70680c /templates | |
parent | 525c7f29761a158748cd068e3432115cd25b9f4c (diff) |
Redirect correctly if filter used sans JavaScript.
It was being treated as a new report and showing errors, rather than
showing you the same page with updated filters. Fixes #1422.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/reports/_list-filters.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/reports/_list-filters.html b/templates/web/base/reports/_list-filters.html index 4dd270dc6..d6f091aaa 100644 --- a/templates/web/base/reports/_list-filters.html +++ b/templates/web/base/reports/_list-filters.html @@ -25,7 +25,7 @@ <p class="report-list-filters"> [% tprintf(loc('<label>Show %s</label> <label>about %s</label>', 'The first %s is a dropdown of all/fixed/etc, the second is a dropdown of categories'), select_status, select_category) %] - <input type="submit" value="[% loc('Go') %]"> + <input type="submit" name="filter_update" value="[% loc('Go') %]"> </p> [% IF use_section_wrapper %] |