Bläddra i källkod

code format cleanup WikiController

git-svn-id: http://svn.redmine.org/redmine/trunk@12618 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.5.0
Toshi MARUYAMA 10 år sedan
förälder
incheckning
2066969c7d
1 ändrade filer med 8 tillägg och 2 borttagningar
  1. 8
    2
      app/controllers/wiki_controller.rb

+ 8
- 2
app/controllers/wiki_controller.rb Visa fil

@@ -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

Laddar…
Avbryt
Spara