diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-02-05 09:05:03 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-02-05 09:05:03 -0800 |
commit | fc299d99343e617911adc2aaf8de3063cbf4ab2a (patch) | |
tree | e76f3560cdc087e5a2ba626cf8dcf6cf86839a6c /httemplate/misc | |
parent | 213d2aee192d0aa9ccf5d2caa6bdb09611686901 (diff) |
gratuitous use of scalar
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/email-customers.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html index 09ff93cca..cd4c92f23 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, ) %> |