diff options
-rw-r--r-- | app/views/request/list.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/request/list.rhtml b/app/views/request/list.rhtml index 47b3bfc55..245462682 100644 --- a/app/views/request/list.rhtml +++ b/app/views/request/list.rhtml @@ -14,7 +14,7 @@ <% for info_request in @info_requests %> <tr class="<%= cycle('odd', 'even') %>"> <td><%= link_to h(info_request.public_body.short_name), :controller => 'body', :action => 'show', :short_name => info_request.public_body.short_name %></td> - <td><%= link_to h(info_request.title), :controller => 'request', :action => 'index', :id => info_request %></td> + <td><%= link_to h(info_request.title), :controller => 'request', :action => 'show', :id => info_request %></td> <td><%= link_to h(info_request.user.name), :controller => 'user', :action => 'index', :name => info_request.user.name %></td> <td><%= simple_date(info_request.created_at) %></td> </tr> |