Add rel=nofollow to links in tags. Closes #2555.

This commit is contained in:
Tom Hughes 2009-12-14 09:09:32 +00:00
parent 01c7470805
commit d963aa30b7
4 changed files with 19 additions and 17 deletions

View file

@ -23,7 +23,7 @@
<% if common_details.changeset.tags['comment'] %>
<tr>
<th><%= t 'browse.common_details.changeset_comment' %></th>
<td><%= auto_link(h(common_details.changeset.tags['comment'])) %></td>
<td><%= linkify(h(common_details.changeset.tags['comment'])) %></td>
</tr>
<% end %>

View file

@ -1,3 +1,3 @@
<tr>
<td><%= h(tag[0]) %> = <%= auto_link(h(tag[1])) %></td>
<td><%= h(tag[0]) %> = <%= linkify(h(tag[1])) %></td>
</tr>