summaryrefslogtreecommitdiff
path: root/httemplate/misc
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-07-11 23:48:02 -0700
committerIvan Kohler <ivan@freeside.biz>2015-07-11 23:48:02 -0700
commit289c9f4539d57534404ada05193b425f6d49200b (patch)
treee8c01c22e75efcd117463f2eb1db714fc849523c /httemplate/misc
parentda63c1a666c4a6ff2ca9ac8a53986f4497252909 (diff)
no need for scalar
Diffstat (limited to 'httemplate/misc')
-rw-r--r--httemplate/misc/email-customers.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html
index d2a39287e..47e6a5b48 100644
--- a/httemplate/misc/email-customers.html
+++ b/httemplate/misc/email-customers.html
@@ -78,13 +78,13 @@ should be used to set msgnum or from/subject/html_body cgi params
<& /elements/tr-fixed.html,
'field' => 'from',
'label' => 'From:',
- 'value' => scalar( $from ),
+ 'value' => $from,
&>
<& /elements/tr-fixed.html,
'field' => 'subject',
'label' => 'Subject:',
- 'value' => scalar( $subject ),
+ 'value' => $subject,
&>
<INPUT TYPE="hidden" NAME="html_body" VALUE="<% $html_body |h %>">