diff --git a/app/views/wiki/show.html.erb b/app/views/wiki/show.html.erb
index 564fc89..22f3bab 100644
--- a/app/views/wiki/show.html.erb
+++ b/app/views/wiki/show.html.erb
@@ -53,9 +53,9 @@
<% end %>
<% other_formats_links do |f| %>
- <%= f.link_to 'PDF', :url => {:id => @page.title, :version => @content.version} %>
- <%= f.link_to 'HTML', :url => {:id => @page.title, :version => @content.version} %>
- <%= f.link_to 'TXT', :url => {:id => @page.title, :version => @content.version} %>
+ <%= f.link_to 'PDF', :url => {:id => @page.title, :version => params[:version]} %>
+ <%= f.link_to 'HTML', :url => {:id => @page.title, :version => params[:version]} %>
+ <%= f.link_to 'TXT', :url => {:id => @page.title, :version => params[:version]} %>
<% end if User.current.allowed_to?(:export_wiki_pages, @project) %>
<% content_for :header_tags do %>
diff --git a/test/functional/wiki_controller_test.rb b/test/functional/wiki_controller_test.rb
index e5b4bed..8b887ec 100644
--- a/test/functional/wiki_controller_test.rb
+++ b/test/functional/wiki_controller_test.rb
@@ -45,6 +45,13 @@ class WikiControllerTest < ActionController::TestCase
:child => { :tag => 'a', :attributes => { :href => '/projects/ecookbook/wiki/Page_with_an_inline_image' },
:content => 'Page with an inline image' } }
end
+
+ def test_export_link
+ Role.anonymous.add_permission! :export_wiki_pages
+ get :show, :project_id => 'ecookbook'
+ assert_response :success
+ assert_tag 'a', :attributes => {:href => '/projects/ecookbook/wiki/CookBook_documentation.txt'}
+ end
def test_show_page_with_name
get :show, :project_id => 1, :id => 'Another_page'