From ed20531e6806462a4bbe549a6b749879283f8bf7 Mon Sep 17 00:00:00 2001 From: fuchsi Date: Thu, 4 Oct 2007 12:12:27 +0000 Subject: [PATCH] don't encode in channel element as well git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4144 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- htroot/yacysearch.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htroot/yacysearch.java b/htroot/yacysearch.java index 80bd8d06de..22af7bf7e9 100644 --- a/htroot/yacysearch.java +++ b/htroot/yacysearch.java @@ -411,8 +411,8 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve // for RSS: don't HTML encode some elements String q = htmlTools.encodeUnicode2xml(post.get("search", "")); - prop.put("rss_query", q); - prop.put("rss_queryenc", yacyURL.escape(q)); + prop.putASIS("rss_query", q); + prop.putASIS("rss_queryenc", yacyURL.escape(q)); // return rewrite properties return prop;