garyp       00/12/18 01:07:19

  Modified:    java/src/org/apache/xalan/templates OutputProperties.java
  Log:
  Fix compose of cdata-section-elements to work with Myriam's change to 
revision 1.6
  
  Revision  Changes    Path
  1.8       +1 -1      
xml-xalan/java/src/org/apache/xalan/templates/OutputProperties.java
  
  Index: OutputProperties.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/OutputProperties.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- OutputProperties.java     2000/12/15 15:28:00     1.7
  +++ OutputProperties.java     2000/12/18 09:07:16     1.8
  @@ -858,7 +858,7 @@
         }
         else if (key.equals(OutputKeys.CDATA_SECTION_ELEMENTS))
         {
  -        m_properties.put(key, (String) oldValue + (String) src.get(key));
  +        m_properties.put(key, (String) oldValue + " " + (String) 
src.get(key));
         }
       }
     }
  
  
  

Reply via email to