Fix bug 378580

git-svn-id: svn://10.0.0.236/trunk@225049 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
inonit%inonit.com 2007-04-25 22:32:17 +00:00
parent 39d4db2c3c
commit 06ed0f0204

View File

@ -278,7 +278,7 @@ class XmlProcessor {
String escapeAttributeValue(Object value) {
String text = ScriptRuntime.toString(value);
if (text.length() == 0) return "\"\"";
if (text.length() == 0) return "";
Document dom = newDocument();
Element e = dom.createElement("a");