Set temporary path cache variable as a String back again so that TCPDF handles error messages fine.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9968 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
165c2be523
commit
c929ab5c16
|
@ -86,10 +86,10 @@ class TCPDF
|
|||
@@k_small_ratio = 2/3.0
|
||||
|
||||
cattr_accessor :k_path_cache
|
||||
@@k_path_cache = Rails.root.join('tmp')
|
||||
@@k_path_cache = Rails.root.join('tmp').to_path
|
||||
|
||||
cattr_accessor :k_path_url_cache
|
||||
@@k_path_url_cache = Rails.root.join('tmp')
|
||||
@@k_path_url_cache = Rails.root.join('tmp').to_path
|
||||
|
||||
cattr_accessor :decoder
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ module Redmine
|
|||
attr_accessor :footer_date
|
||||
|
||||
def initialize(lang)
|
||||
@@k_path_cache = Rails.root.join('tmp', 'pdf')
|
||||
@@k_path_cache = Rails.root.join('tmp', 'pdf').to_path
|
||||
FileUtils.mkdir_p @@k_path_cache unless File::exist?(@@k_path_cache)
|
||||
set_language_if_valid lang
|
||||
pdf_encoding = l(:general_pdf_encoding).upcase
|
||||
|
|
Loading…
Reference in New Issue