diff options
author | Mark Wells <mark@freeside.biz> | 2016-12-30 13:22:43 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-12-30 13:22:43 -0800 |
commit | cf9e2c1748c2790e3ed5bfb27ea892a402fcb9a9 (patch) | |
tree | 7f54dd7389ed0fb3eb6ef49a6a932c7b86da77e9 | |
parent | 65ea9da86b63c56dd577bb0688e8ba01b735bedf (diff) |
fix "Create map" form submission, #73266
-rw-r--r-- | httemplate/search/sector.html | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/httemplate/search/sector.html b/httemplate/search/sector.html index 037df10ea..f93264907 100644 --- a/httemplate/search/sector.html +++ b/httemplate/search/sector.html @@ -59,19 +59,20 @@ % $text = 'Reprocess'; % } <form name="create_<% $sectornum |h %>"> - <input type="hidden" name="sectornum" value="<% $sectornum |h %>"> - <& /elements/progress-init.html, - 'create_'.$sectornum, - [ 'sectornum' ], - $fsurl.'misc/sector-create_map.html', - { 'message' => 'Map generated', - 'url' => $cgi->self_url }, - "sector$sectornum" - &> - <a class="createmap" href="#" onclick="sector<% $sectornum %>process()"> - <% $text %> - </a> -% } + <input type="hidden" name="sectornum" value="<% $sectornum |h %>"> + <& /elements/progress-init.html, + 'create_'.$sectornum, + [ 'sectornum' ], + $fsurl.'misc/sector-create_map.html', + { 'message' => 'Map generated', + 'url' => $cgi->self_url }, + "sector$sectornum" + &> + <a class="createmap" href="#" onclick="sector<% $sectornum %>process()"> + <% $text %> + </a> + </form> +% } # if @need_fields </td> <td> % if ( length($sector->image) > 0 ) { |