changed the newline->br thing so it makes
authorjohn <john>
Wed, 27 Mar 2002 14:54:41 +0000 (14:54 +0000)
committerjohn <john>
Wed, 27 Mar 2002 14:54:41 +0000 (14:54 +0000)
a <br /> instead of a <br>.

(fop/xalan expects valid xml)

source/mir/misc/StringUtil.java

index a9a9a36..ce470a8 100755 (executable)
@@ -917,7 +917,7 @@ public final class StringUtil {
         *  nur sinnvoll, wenn text nicht im html-format eingegeben
         */
        public static String convertNewline2Break(String haystack) {
-               return re_newline2br.substituteAll(haystack,"$0<br>");
+               return re_newline2br.substituteAll(haystack,"$0<br />");
        }
 
        /**