This commit is contained in:
r888888888
2015-10-08 17:38:04 -07:00
parent 1eb2d515fd
commit 2fc5a28a8b

View File

@@ -2,7 +2,7 @@
<div id="a-index">
<h1>IP Addresses</h1>
<p>The following users share IP addresses used by <%= params[:user_name] %>. This searches across comments, post changes, note changes, pool changes, wiki changes, and dmails over the past 3 months.</p>
<p>The following users share IP addresses used by <%= params[:search][:user_name] %>. This searches across comments, post changes, note changes, pool changes, wiki changes, and dmails over the past 3 months.</p>
<table class="striped">
<thead>
@@ -14,7 +14,7 @@
<tbody>
<% @search.find_common_users.each do |user_id, count| %>
<tr>
<td><%= link_to User.id_to_name(user_id), users_path(user_id) %></td>
<td><%= link_to User.id_to_name(user_id), user_path(user_id) %></td>
<td><%= count %></td>
</tr>
<% end %>