[freeside-commits] branch FREESIDE_4_BRANCH updated. 571d0168f21c5ef0a575bc866fd27b523835b751

Ivan ivan at 420.am
Sat Jul 11 23:48:05 PDT 2015


The branch, FREESIDE_4_BRANCH has been updated
       via  571d0168f21c5ef0a575bc866fd27b523835b751 (commit)
      from  06ae1b10ae5e0aa00b9947edeaf1ef263fc71dc7 (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 571d0168f21c5ef0a575bc866fd27b523835b751
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Sat Jul 11 23:48:04 2015 -0700

    no need for scalar

diff --git a/httemplate/misc/email-customers.html b/httemplate/misc/email-customers.html
index d2a3928..47e6a5b 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 %>">

-----------------------------------------------------------------------

Summary of changes:
 httemplate/misc/email-customers.html |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)




More information about the freeside-commits mailing list