From: john Date: Wed, 27 Mar 2002 14:54:41 +0000 (+0000) Subject: changed the newline->br thing so it makes X-Git-Tag: prexmlproducerconfig~221 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=b001f87f92958bcb078e88fc8d16e7386c6c3f9e;p=mir.git changed the newline->br thing so it makes a
instead of a
. (fop/xalan expects valid xml) --- 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
"); } /**