##// END OF EJS Templates
cleanup syntax of Relation#all at WikiController#export...
Toshi MARUYAMA -
r12345:7484cf07b656
parent child
Show More
@@ -277,7 +277,10 class WikiController < ApplicationController
277
277
278 # Export wiki to a single pdf or html file
278 # Export wiki to a single pdf or html file
279 def export
279 def export
280 @pages = @wiki.pages.all(:order => 'title', :include => [:content, {:attachments => :author}])
280 @pages = @wiki.pages.
281 order('title').
282 includes([:content, {:attachments => :author}]).
283 all
281 respond_to do |format|
284 respond_to do |format|
282 format.html {
285 format.html {
283 export = render_to_string :action => 'export_multiple', :layout => false
286 export = render_to_string :action => 'export_multiple', :layout => false
General Comments 0
You need to be logged in to leave comments. Login now