PDF: remove replacing non ASCII quotation marks (#61).
Languages except CJK and Thailand use TCPDF UTF-8. TCPDF UTF-8 supports these quotation marks. Contributed by Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5306 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
846ac262ec
commit
d435195764
|
@ -144,8 +144,6 @@ module Redmine
|
|||
|
||||
def fix_text_encoding(txt)
|
||||
@ic ||= Iconv.new(l(:general_pdf_encoding), 'UTF-8')
|
||||
# these quotation marks are not correctly rendered in the pdf
|
||||
txt = txt.gsub(/[“â€<C3A2>]/, '"') if txt
|
||||
txt = begin
|
||||
# 0x5c char handling
|
||||
txtar = txt.split('\\')
|
||||
|
|
Loading…
Reference in New Issue