|
|
@ -90,7 +90,7 @@ public class yacysearch {
|
|
|
|
|
|
|
|
|
|
|
|
// get query
|
|
|
|
// get query
|
|
|
|
String originalquerystring = (post == null) ? "" : post.get("query", post.get("search", "")).trim();
|
|
|
|
String originalquerystring = (post == null) ? "" : post.get("query", post.get("search", "")).trim();
|
|
|
|
String querystring = originalquerystring.replace('+', ' ');
|
|
|
|
String querystring = originalquerystring.replace('+', ' ').replace('*', ' ');
|
|
|
|
CrawlProfile.CacheStrategy snippetFetchStrategy = (post == null) ? null : CrawlProfile.CacheStrategy.parse(post.get("verify", "cacheonly"));
|
|
|
|
CrawlProfile.CacheStrategy snippetFetchStrategy = (post == null) ? null : CrawlProfile.CacheStrategy.parse(post.get("verify", "cacheonly"));
|
|
|
|
final servletProperties prop = new servletProperties();
|
|
|
|
final servletProperties prop = new servletProperties();
|
|
|
|
prop.put("topmenu", sb.getConfigBool("publicTopmenu", true) ? 1 : 0);
|
|
|
|
prop.put("topmenu", sb.getConfigBool("publicTopmenu", true) ? 1 : 0);
|
|
|
|