diff options
author | Edmund von der Burg <evdb@mysociety.org> | 2011-03-24 16:08:14 +0000 |
---|---|---|
committer | Edmund von der Burg <evdb@mysociety.org> | 2011-03-24 16:08:14 +0000 |
commit | d47c486b1777211c627462eec08352876bc15f48 (patch) | |
tree | 9f76e89ee87fc36af109ff6a21766b03f8560687 | |
parent | d0f83421523a6dbab449d52810eeed1df8b3edd0 (diff) |
Fix so that submitting without using button works
-rw-r--r-- | templates/web/default/reports/new/fill_in_details.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/web/default/reports/new/fill_in_details.html b/templates/web/default/reports/new/fill_in_details.html index 3fa2dc953..7a2784fa9 100644 --- a/templates/web/default/reports/new/fill_in_details.html +++ b/templates/web/default/reports/new/fill_in_details.html @@ -139,7 +139,8 @@ [% INCLUDE 'reports/new/notes.html' %] <p id="problem_submit"> - <input type="submit" name="submit_problem" value="[% loc('Submit') %]"> + <input type="hidden" name="submit_problem" value="1"> + <input type="submit" value="[% loc('Submit') %]"> </p> </div> |