[freeside-commits] branch FREESIDE_3_BRANCH updated. fc299d99343e617911adc2aaf8de3063cbf4ab2a
Ivan
ivan at 420.am
Fri Feb 5 09:05:05 PST 2016
The branch, FREESIDE_3_BRANCH has been updated
via fc299d99343e617911adc2aaf8de3063cbf4ab2a (commit)
from 213d2aee192d0aa9ccf5d2caa6bdb09611686901 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit fc299d99343e617911adc2aaf8de3063cbf4ab2a
Author: Ivan Kohler <ivan at freeside.biz>
Date: Fri Feb 5 09:05:03 2016 -0800
gratuitous use of scalar
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,
)
%>
-----------------------------------------------------------------------
Summary of changes:
httemplate/misc/email-customers.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
More information about the freeside-commits
mailing list