summaryrefslogtreecommitdiff
path: root/httemplate/elements/email-link.html
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-08-31 13:32:38 -0700
committerMark Wells <mark@freeside.biz>2015-08-31 14:20:02 -0700
commit61dcd434c7cb225e8464c0f235d85cdebfbfdfde (patch)
treeec2166e7caf7833d92d2763e6c232ddbc1d6eeed /httemplate/elements/email-link.html
parent34a368eae9db62d89a49e55d01c49c8c6f28f30e (diff)
repeatability cleanup, #37340
Diffstat (limited to 'httemplate/elements/email-link.html')
-rw-r--r--httemplate/elements/email-link.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/httemplate/elements/email-link.html b/httemplate/elements/email-link.html
index 2612faabb..16935cf98 100644
--- a/httemplate/elements/email-link.html
+++ b/httemplate/elements/email-link.html
@@ -10,7 +10,8 @@ die "'table' required" if !$table;
die "'search_hash' required" if !$search_hash;
my $uri = new URI;
-$uri->query_form($search_hash);
+my @params = map { $_, $search_hash->{$_} } sort keys %$search_hash;
+$uri->query_form(@params);
my $query = $uri->query;
my $label = ($opt{'label'} || 'Email a notice to these customers');
</%init>