From: Toshi MARUYAMA Date: Mon, 4 Apr 2011 01:10:31 +0000 (+0000) Subject: PDF: remove replacing non ASCII quotation marks (#61). X-Git-Tag: 1.2.0~541 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d435195764dbe07f85bff1b87c386b2ad2582e97;p=redmine.git 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 --- diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb index baf553ca1..2316f91f2 100644 --- a/lib/redmine/export/pdf.rb +++ b/lib/redmine/export/pdf.rb @@ -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(/[“�]/, '"') if txt txt = begin # 0x5c char handling txtar = txt.split('\\')