This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/release18.12 by this push:
     new 2a535b5ba5 Fixed: File XML Properties file process error (OFBIZ-12738) 
(#580)
2a535b5ba5 is described below

commit 2a535b5ba50bfd205bd158b3972acdbe7288dab9
Author: cshan-ecomify <117295991+cshan-ecom...@users.noreply.github.com>
AuthorDate: Wed Jan 25 11:19:00 2023 +0100

    Fixed: File XML Properties file process error (OFBIZ-12738) (#580)
    
    This is caused by unescaped <> brackets in QRCodeUiLabels.xml in 
framework/common.
    Fixed escape syntax for <>.
---
 framework/common/config/QRCodeUiLabels.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/framework/common/config/QRCodeUiLabels.xml 
b/framework/common/config/QRCodeUiLabels.xml
index 11822d380a..725824b2d0 100644
--- a/framework/common/config/QRCodeUiLabels.xml
+++ b/framework/common/config/QRCodeUiLabels.xml
@@ -36,8 +36,8 @@
         <value xml:lang="zh">无法写格式为{0}的图片。</value>
     </property>
     <property key="GeneratedTextNotMatchOriginal">
-        <value xml:lang="en">The text in generated QR code doesn't match the 
original: <br/>[Text in QR code]{0} <br/>[Original text]{1}</value>
-        <value 
xml:lang="zh">二维码中的文字信息与原信息不一致:<br/>[二维码中文字]{0}<br/>[原信息文字]{1}</value>
+        <value xml:lang="en">The text in generated QR code doesn't match the 
original: &lt;br/&gt;[Text in QR code]{0} &lt;br/&gt;[Original text]{1}</value>
+        <value xml:lang="zh">二维码中的文字信息与原信息不一致:&lt;br/&gt;[二维码中文字]{0} 
&lt;br/&gt;[原信息文字]{1}</value>
     </property>
     <property key="ParameterCannotEmpty">
         <value xml:lang="en">The {0} parameter cannot be empty in 
generateQRCodeImage service!</value>

Reply via email to