diff options
author | Ivan Kohler <ivan@freeside.biz> | 2018-02-20 14:18:01 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2018-02-20 14:18:01 -0800 |
commit | 3120e258a9a859bba3b64e493cf6d922d8b49e4c (patch) | |
tree | 56473418700126364c749b8698766261528f606e /httemplate/misc | |
parent | ded9ea12b53d20754bbf07473dc3ec9022adae51 (diff) |
fix broadband reporting with giant query URLs (large numbers of package defs, etc.), RT#76765
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/email-customers.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index c9a216c3a..b8ba99705 100644 --- a/httemplate/misc/email-customers.html +++ b/httemplate/misc/email-customers.html @@ -230,6 +230,8 @@ my $process_url = $opt{'process_url'} || 'process/email-customers.html'; my $title = $opt{'title'} || 'Send customer notices'; push( @no_search_fields, @{$opt{'no_search_fields'}} ) if $opt{'no_search_fields'}; +$m->comp('/elements/handle_uri_query'); + my $table = $cgi->param('table') or die "'table' required"; my $agent_virt_agentnum = $cgi->param('agent_virt_agentnum') || ''; |