summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/controllers/wiki_controller.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/controllers/wiki_controller.rb b/app/controllers/wiki_controller.rb
index 42a60efc5..22f075f60 100644
--- a/app/controllers/wiki_controller.rb
+++ b/app/controllers/wiki_controller.rb
@@ -284,7 +284,9 @@ class WikiController < ApplicationController
send_data(export, :type => 'text/html', :filename => "wiki.html")
}
format.pdf {
- send_data(wiki_pages_to_pdf(@pages, @project), :type => 'application/pdf', :filename => "#{@project.identifier}.pdf")
+ send_data(wiki_pages_to_pdf(@pages, @project),
+ :type => 'application/pdf',
+ :filename => "#{@project.identifier}.pdf")
}
end
end
@@ -351,6 +353,10 @@ private
end
def load_pages_for_index
- @pages = @wiki.pages.with_updated_on.reorder("#{WikiPage.table_name}.title").includes(:wiki => :project).includes(:parent).all
+ @pages = @wiki.pages.with_updated_on.
+ reorder("#{WikiPage.table_name}.title").
+ includes(:wiki => :project).
+ includes(:parent).
+ all
end
end