summaryrefslogtreecommitdiffstats
path: root/app/controllers/wiki_controller.rb
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2012-11-18 10:18:30 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2012-11-18 10:18:30 +0000
commit5f36e1fff28609a48ab89c0b4f5690dfaca24e97 (patch)
treeed58fab50ed33f67e78253b397a532ebd82ad1cf /app/controllers/wiki_controller.rb
parentaa45516a026f9d48395fca3c0468b5befc63c36a (diff)
downloadredmine-5f36e1fff28609a48ab89c0b4f5690dfaca24e97.tar.gz
redmine-5f36e1fff28609a48ab89c0b4f5690dfaca24e97.zip
Removed the limit of 75 pages when exporting wiki pages (#12274).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10838 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/wiki_controller.rb')
-rw-r--r--app/controllers/wiki_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/wiki_controller.rb b/app/controllers/wiki_controller.rb
index 063a91ef8..98b2dbcd8 100644
--- a/app/controllers/wiki_controller.rb
+++ b/app/controllers/wiki_controller.rb
@@ -284,7 +284,7 @@ class WikiController < ApplicationController
# Export wiki to a single pdf or html file
def export
- @pages = @wiki.pages.all(:order => 'title', :include => [:content, :attachments], :limit => 75)
+ @pages = @wiki.pages.all(:order => 'title', :include => [:content, :attachments])
respond_to do |format|
format.html {
export = render_to_string :action => 'export_multiple', :layout => false