From 10528a0ced320edff26161d52d8dc54f4af5403e Mon Sep 17 00:00:00 2001 From: karlchenofhell Date: Fri, 22 Dec 2006 00:53:40 +0000 Subject: [PATCH] - hopefully last needed fix for indexControl_p (wrong property on "set") git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3115 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/IndexControl_p.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htroot/IndexControl_p.java b/htroot/IndexControl_p.java index d196dd4a4..07e52f9e5 100644 --- a/htroot/IndexControl_p.java +++ b/htroot/IndexControl_p.java @@ -403,10 +403,10 @@ public class IndexControl_p { // insert constants prop.put("wcount", Integer.toString(switchboard.wordIndex.size())); prop.put("ucount", Integer.toString(switchboard.wordIndex.loadedURL.size())); - prop.put("indexDistributeChecked", (switchboard.getConfig("allowDistributeIndex", "true").equals("true")) ? "checked" : ""); - prop.put("indexDistributeWhileCrawling", (switchboard.getConfig("allowDistributeIndexWhileCrawling", "true").equals("true")) ? "checked" : ""); - prop.put("indexReceiveChecked", (switchboard.getConfig("allowReceiveIndex", "true").equals("true")) ? "checked" : ""); - prop.put("indexReceiveBlockBlacklistChecked", (switchboard.getConfig("indexReceiveBlockBlacklist", "true").equals("true")) ? "checked" : ""); + prop.put("indexDistributeChecked", (switchboard.getConfig("allowDistributeIndex", "true").equals("true")) ? 1 : 0); + prop.put("indexDistributeWhileCrawling", (switchboard.getConfig("allowDistributeIndexWhileCrawling", "true").equals("true")) ? 1 : 0); + prop.put("indexReceiveChecked", (switchboard.getConfig("allowReceiveIndex", "true").equals("true")) ? 1 : 0); + prop.put("indexReceiveBlockBlacklistChecked", (switchboard.getConfig("indexReceiveBlockBlacklist", "true").equals("true")) ? 1 : 0); prop.put("peertags", serverCodings.set2string(yacyCore.seedDB.mySeed.getPeerTags(), ",", false)); // return rewrite properties return prop;