link to the filtered blog, not to the current viewBlogs page

This commit is contained in:
jrandom
2005-12-08 21:01:04 +00:00
committed by zzz
parent 7d64ecb628
commit f738a02760

View File

@ -83,7 +83,7 @@ public class ViewBlogsServlet extends BaseServlet {
out.write("<tr><td colspan=\"3\">");
for (Iterator iter = tags.iterator(); iter.hasNext(); ) {
String tag = (String)iter.next();
out.write("<a href=\"" + getFilterByTagLink(req, null, user, tag, null)
out.write("<a href=\"" + ThreadedHTMLRenderer.getFilterByTagLink(getControlTarget(), null, user, tag, null)
+ "\" title=\"View threads flagged with the tag '" + HTMLRenderer.sanitizeTagParam(tag) + "'\">");
out.write(HTMLRenderer.sanitizeString(tag, 32));
out.write("</a> ");