I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f738a027 authored by jrandom's avatar jrandom Committed by zzz
Browse files

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

parent 7d64ecb6
No related branches found
No related tags found
No related merge requests found
...@@ -83,7 +83,7 @@ public class ViewBlogsServlet extends BaseServlet { ...@@ -83,7 +83,7 @@ public class ViewBlogsServlet extends BaseServlet {
out.write("<tr><td colspan=\"3\">"); out.write("<tr><td colspan=\"3\">");
for (Iterator iter = tags.iterator(); iter.hasNext(); ) { for (Iterator iter = tags.iterator(); iter.hasNext(); ) {
String tag = (String)iter.next(); 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) + "'\">"); + "\" title=\"View threads flagged with the tag '" + HTMLRenderer.sanitizeTagParam(tag) + "'\">");
out.write(HTMLRenderer.sanitizeString(tag, 32)); out.write(HTMLRenderer.sanitizeString(tag, 32));
out.write("</a> "); out.write("</a> ");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment