diff options
author | ivan <ivan> | 2009-11-30 00:38:10 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-11-30 00:38:10 +0000 |
commit | 500254407a38f459a2a8df720c07f28566985dfd (patch) | |
tree | f714abc5e98b28ccf0c1348dacea7ecaa1e68db0 /httemplate/misc/email-customers.html | |
parent | 4c10da752884dae782505abdda262a7c68ab77dd (diff) |
fix bulk sending of customer notices, RT#6778
Diffstat (limited to 'httemplate/misc/email-customers.html')
-rw-r--r-- | httemplate/misc/email-customers.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index f644db9e9..46bf3b4fe 100644 --- a/httemplate/misc/email-customers.html +++ b/httemplate/misc/email-customers.html @@ -4,7 +4,7 @@ % foreach my $key ( keys %search ) { % my @values = ref($search{$key}) ? @{$search{$key}} : ( $search{$key} ); % foreach my $value ( @values ) { - <INPUT TYPE="hidden" NAME="<% $key |h %>" VALUE="<% $value |h %>"> + <INPUT TYPE="hidden" NAME="<% $key %>" VALUE="<% $value %>"> % } % } |