From cd636eb00ec787f8e587d8251d0e25d1cd6b5789 Mon Sep 17 00:00:00 2001 From: low012 Date: Mon, 18 Sep 2006 01:24:26 +0000 Subject: [PATCH] *) Fix for the fix... git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2615 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/data/wikiCode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/data/wikiCode.java b/source/de/anomic/data/wikiCode.java index 44a6f2850..eddbe87d2 100644 --- a/source/de/anomic/data/wikiCode.java +++ b/source/de/anomic/data/wikiCode.java @@ -1061,7 +1061,7 @@ public class wikiCode { } //check if line contains preformatted symbols or if we are in a preformatted sequence already. - if ((result.indexOf("<pre>")>=0)||(result.indexOf("</pre>")>=0)||(preformattedSpan)){ + else if ((result.indexOf("<pre>")>=0)||(result.indexOf("</pre>")>=0)||(preformattedSpan)){ result = preformattedTag(result, switchboard); }