From 5af76fccd74edff07c2e386b1cf2c4655ce84d9d Mon Sep 17 00:00:00 2001 From: hydrox Date: Mon, 19 Feb 2007 13:00:41 +0000 Subject: [PATCH] *) peer-search on Network.html now is case-insensitive git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3374 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/Network.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/Network.java b/htroot/Network.java index 29ce8a9bd..e302e4a09 100644 --- a/htroot/Network.java +++ b/htroot/Network.java @@ -298,7 +298,7 @@ public class Network { long myValue=0, nextValue=0, prevValue=0, nextPPM=0, myPPM=0; Pattern peerSearchPattern = null; if(post.containsKey("search")) { - peerSearchPattern = Pattern.compile(post.get("match", "")); + peerSearchPattern = Pattern.compile(post.get("match", ""), Pattern.CASE_INSENSITIVE); } while (e.hasMoreElements() && conCount < maxCount) { seed = (yacySeed) e.nextElement();