From 904ab7aa394269954680f27a8b2bafdbbcbaf55b Mon Sep 17 00:00:00 2001 From: borg-0300 Date: Tue, 30 Aug 2005 15:06:59 +0000 Subject: [PATCH] Bugfix 5.0 to old version See http://www.yacy-forum.de/viewtopic.php?t=1064 git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@609 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/ProxyIndexingMonitor_p.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/ProxyIndexingMonitor_p.java b/htroot/ProxyIndexingMonitor_p.java index 0aaf83d61..c4a2ae5af 100644 --- a/htroot/ProxyIndexingMonitor_p.java +++ b/htroot/ProxyIndexingMonitor_p.java @@ -90,7 +90,7 @@ public class ProxyIndexingMonitor_p { // proxyCache - check and create the directory oldProxyCache = env.getConfig("proxyCache", "DATA/HTCACHE"); newProxyCache = ((String) post.get("proxyCache", "DATA/HTCACHE")); - newProxyCache = newProxyCache.replace("\\", "/"); + newProxyCache = newProxyCache.replace('\\', '/'); if (newProxyCache.endsWith("/")) newProxyCache.substring(0, newProxyCache.length() - 1); File cp = new File(newProxyCache); if ((!cp.isDirectory()) && (!cp.isFile())) cp.mkdirs();