Symptom:
If the user attempts to refine his/her search scope to only one specific forum, the results are not reduced. You can verify this bug on
http://www.jforum.net/search/filters.page by searching for the term "index". I always get 157 results, regardless of the forum I choose to search within.
Solution:
At the bottom of buildSearchArgs(), in SearchAction.java, paste this over the existing code...
if (this.request.getParameter("search_forum") != null && !"".equals(this.request.getParameter("search_forum")) ) {
args.setForumId(this.request.getIntParameter("search_forum"));
}
jira bug # JF-839
-Ben
[originally posted on jforum.net by bwfrieds]