Commit ac272f7d authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[JM-703] Unnecessary escaping removed (taken care of by underlying API)

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@9782 b35dd754-fafc-0310-a699-88a17e54d16e
parent 2fd05b84
...@@ -417,7 +417,7 @@ public class XMLProperties { ...@@ -417,7 +417,7 @@ public class XMLProperties {
element.addCDATA(value.substring(9, value.length()-3)); element.addCDATA(value.substring(9, value.length()-3));
} }
else { else {
element.setText(StringEscapeUtils.escapeXml(value)); element.setText(value);
} }
// Write the XML properties to disk // Write the XML properties to disk
saveProperties(); saveProperties();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment