diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-21 18:46:26 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-10-21 18:46:26 +0000 |
commit | d66b3452db773e2d9faf2452595ab3e8d136d843 (patch) | |
tree | 38ce910cf45c26789fdb1009f381aa1243e3d814 /app/helpers/wiki_helper.rb | |
parent | 9ec142713d5eb4c2f45fec02d6062165efe312c7 (diff) | |
download | redmine-d66b3452db773e2d9faf2452595ab3e8d136d843.tar.gz redmine-d66b3452db773e2d9faf2452595ab3e8d136d843.zip |
Wiki page versions routes cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10687 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/wiki_helper.rb')
-rw-r--r-- | app/helpers/wiki_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/wiki_helper.rb b/app/helpers/wiki_helper.rb index 6edeabeb3..873ec1793 100644 --- a/app/helpers/wiki_helper.rb +++ b/app/helpers/wiki_helper.rb @@ -37,7 +37,7 @@ module WikiHelper def wiki_page_breadcrumb(page) breadcrumb(page.ancestors.reverse.collect {|parent| - link_to(h(parent.pretty_title), {:controller => 'wiki', :action => 'show', :id => parent.title, :project_id => parent.project}) + link_to(h(parent.pretty_title), {:controller => 'wiki', :action => 'show', :id => parent.title, :project_id => parent.project, :version => nil}) }) end end |