aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlouise <louise>2007-10-15 22:35:48 +0000
committerlouise <louise>2007-10-15 22:35:48 +0000
commit36ff7e35f71fa8eb09c9cc959e5a364b0bd6a44d (patch)
tree8762be671b67f9dd95287b06e60acef3a7f7621a
parent079f4309b0dab99aeb7a7b84adfadb47cbc425c8 (diff)
Updating single request url in request list
-rw-r--r--app/views/request/list.rhtml2
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>