Browse Source

cleanup syntax of Relation#all at WikiController#export

git-svn-id: http://svn.redmine.org/redmine/trunk@12620 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.5.0
Toshi MARUYAMA 10 years ago
parent
commit
7484cf07b6
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      app/controllers/wiki_controller.rb

+ 4
- 1
app/controllers/wiki_controller.rb View File

@@ -277,7 +277,10 @@ class WikiController < ApplicationController

# Export wiki to a single pdf or html file
def export
@pages = @wiki.pages.all(:order => 'title', :include => [:content, {:attachments => :author}])
@pages = @wiki.pages.
order('title').
includes([:content, {:attachments => :author}]).
all
respond_to do |format|
format.html {
export = render_to_string :action => 'export_multiple', :layout => false

Loading…
Cancel
Save