fix PDF output not to contain garbage chars [Jesse Newland]

This commit is contained in:
Matthias Tarasiewicz 2007-01-16 07:21:16 +00:00
parent bdf5ab51ef
commit 8bfe83fa20

View file

@ -306,7 +306,7 @@ class WikiController < ApplicationController
def export_page_to_tex(file_path)
tex
File.open(file_path, 'w') { |f| f.write(render_to_string(:template => 'wiki/tex', :layout => nil)) }
File.open(file_path, 'w') { |f| f.write(render_to_string(:template => 'wiki/tex', :layout => false)) }
end
def export_pages_as_zip(file_type, &block)
@ -424,5 +424,6 @@ class WikiController < ApplicationController
[]
end
end
end