summaryrefslogtreecommitdiffstats
path: root/app/views/wiki/date_index.html.erb
diff options
context:
space:
mode:
authorEric Davis <edavis@littlestreamsoftware.com>2010-10-28 21:25:38 +0000
committerEric Davis <edavis@littlestreamsoftware.com>2010-10-28 21:25:38 +0000
commitc514dd6885af45ebb38d00ba4a8c61b1ea206d2c (patch)
tree1427bc497e59c610fc4c622ff55ffbb8704c0142 /app/views/wiki/date_index.html.erb
parente7e7a91b857408557b037932de69f03c4bc6c9aa (diff)
downloadredmine-c514dd6885af45ebb38d00ba4a8c61b1ea206d2c.tar.gz
redmine-c514dd6885af45ebb38d00ba4a8c61b1ea206d2c.zip
Refactor: convert WikiController to a REST resource
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4303 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/wiki/date_index.html.erb')
-rw-r--r--app/views/wiki/date_index.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/wiki/date_index.html.erb b/app/views/wiki/date_index.html.erb
index 01385bc49..65af6084e 100644
--- a/app/views/wiki/date_index.html.erb
+++ b/app/views/wiki/date_index.html.erb
@@ -12,7 +12,7 @@
<h3><%= format_date(date) %></h3>
<ul>
<% @pages_by_date[date].each do |page| %>
- <li><%= link_to page.pretty_title, :action => 'show', :id => page.title %></li>
+ <li><%= link_to page.pretty_title, :action => 'show', :id => page.title, :project_id => page.project %></li>
<% end %>
</ul>
<% end %>