[freeside-commits] branch master updated. 289c9f4539d57534404ada05193b425f6d49200b

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


The branch, master has been updated
       via  289c9f4539d57534404ada05193b425f6d49200b (commit)
      from  da63c1a666c4a6ff2ca9ac8a53986f4497252909 (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 289c9f4539d57534404ada05193b425f6d49200b
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Sat Jul 11 23:48:02 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