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) def export_page_to_tex(file_path)
tex 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 end
def export_pages_as_zip(file_type, &block) def export_pages_as_zip(file_type, &block)
@ -425,4 +425,5 @@ class WikiController < ApplicationController
end end
end end
end end