svn commit: r562967 - /ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r562967 - /ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl

jleroux@apache.org
Author: jleroux
Date: Sun Aug  5 14:24:09 2007
New Revision: 562967

URL: http://svn.apache.org/viewvc?view=rev&rev=562967
Log:
some parenthesis were missing (in case of empty values or null). Also the template should be internationalised...

Modified:
    ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl

Modified: ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl?view=diff&rev=562967&r1=562966&r2=562967
==============================================================================
--- ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl (original)
+++ ofbiz/trunk/applications/party/templates/email/ChangePersonalInfoNotification.ftl Sun Aug  5 14:24:09 2007
@@ -25,7 +25,7 @@
     </head>
     <body>
         <div class="head1">${title}</div>
-        <p class="tabletext">Hello ${parameters.partyAndPerson.salutation?if_exists} ${parameters.partyAndPerson.personalTitle?if_exists} ${parameters.partyAndPerson.firstName?if_exists} ${parameters.partyAndPerson.middleName?if_exists} ${parameters.partyAndPerson.lastName?if_exists} ${parameters.partyAndPerson.suffix?if_exists},</b></p>
+        <p class="tabletext">Hello ${(parameters.partyAndPerson.salutation)?if_exists} ${(parameters.partyAndPerson.personalTitle)?if_exists} ${(parameters.partyAndPerson.firstName)?if_exists} ${(parameters.partyAndPerson.middleName)?if_exists} ${(parameters.partyAndPerson.lastName)?if_exists} ${(parameters.partyAndPerson.suffix)?if_exists},</b></p>
         <p class="tabletext">Your personal information has been updated successfully.</p>
     </body>
 </html>