Eager-load authors.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10841 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
1ff8bbf080
commit
46d27348fd
|
@ -284,7 +284,7 @@ class WikiController < ApplicationController
|
||||||
|
|
||||||
# Export wiki to a single pdf or html file
|
# Export wiki to a single pdf or html file
|
||||||
def export
|
def export
|
||||||
@pages = @wiki.pages.all(:order => 'title', :include => [:content, :attachments])
|
@pages = @wiki.pages.all(:order => 'title', :include => [:content, {:attachments => :author}])
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html {
|
format.html {
|
||||||
export = render_to_string :action => 'export_multiple', :layout => false
|
export = render_to_string :action => 'export_multiple', :layout => false
|
||||||
|
|
Loading…
Reference in New Issue