aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/java/org/apache/fop/render/xml/XMLXMLHandler.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/render/xml/XMLXMLHandler.java b/src/java/org/apache/fop/render/xml/XMLXMLHandler.java
index ff87cf057..eb1f4946b 100644
--- a/src/java/org/apache/fop/render/xml/XMLXMLHandler.java
+++ b/src/java/org/apache/fop/render/xml/XMLXMLHandler.java
@@ -1,5 +1,5 @@
/*
- * Copyright 1999-2005 The Apache Software Foundation.
+ * Copyright 1999-2006 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -111,6 +111,8 @@ public class XMLXMLHandler implements XMLHandler {
lh.startCDATA();
handler.characters(ca, 0, ca.length);
lh.endCDATA();
+ } else {
+ handler.characters(ca, 0, ca.length);
}
break;
case Node.ENTITY_REFERENCE_NODE: