Skip to content

Commit

Permalink
fix json in case of query includes "
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7125 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
lotus committed Sep 8, 2010
1 parent c0b08ac commit b73ea65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htroot/yacysearch.java
Expand Up @@ -726,7 +726,7 @@ public static serverObjects respond(final RequestHeader header, final serverObje

// for RSS: don't HTML encode some elements
prop.putXML("rss_query", originalquerystring);
prop.put("rss_queryenc", originalquerystring.replace(' ', '+'));
prop.putXML("rss_queryenc", originalquerystring.replace(' ', '+'));

sb.localSearchLastAccess = System.currentTimeMillis();

Expand Down

0 comments on commit b73ea65

Please sign in to comment.