summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-02-05 09:05:03 -0800
committerIvan Kohler <ivan@freeside.biz>2016-02-05 09:05:03 -0800
commitfc299d99343e617911adc2aaf8de3063cbf4ab2a (patch)
treee76f3560cdc087e5a2ba626cf8dcf6cf86839a6c
parent213d2aee192d0aa9ccf5d2caa6bdb09611686901 (diff)
gratuitous use of scalar
-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 09ff93c..cd4c92f 100644
--- a/httemplate/misc/email-customers.html
+++ b/httemplate/misc/email-customers.html
@@ -80,14 +80,14 @@ should be used to set msgnum or from/subject/html_body cgi params
<% include('/elements/tr-fixed.html',
'field' => 'from',
'label' => 'From:',
- 'value' => scalar( $from ),
+ 'value' => $from,
)
%>
<% include('/elements/tr-fixed.html',
'field' => 'subject',
'label' => 'Subject:',
- 'value' => scalar( $subject ),
+ 'value' => $subject,
)
%>