From b001f87f92958bcb078e88fc8d16e7386c6c3f9e Mon Sep 17 00:00:00 2001 From: john Date: Wed, 27 Mar 2002 14:54:41 +0000 Subject: [PATCH] changed the newline->br thing so it makes a
instead of a
. (fop/xalan expects valid xml) --- source/mir/misc/StringUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/mir/misc/StringUtil.java b/source/mir/misc/StringUtil.java index a9a9a36b..ce470a83 100755 --- a/source/mir/misc/StringUtil.java +++ b/source/mir/misc/StringUtil.java @@ -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
"); + return re_newline2br.substituteAll(haystack,"$0
"); } /** -- 2.11.0