summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-04-29 05:35:26 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2011-04-29 05:35:26 +0000
commitf62605c636c2089a1c7a4ea6998dac135bd75346 (patch)
tree5a515f9c1ee14dd67672fb4c71309c7e6803203b /lib
parented3efeb9600c91e71727a3f147f2905ec35e5b55 (diff)
downloadredmine-f62605c636c2089a1c7a4ea6998dac135bd75346.tar.gz
redmine-f62605c636c2089a1c7a4ea6998dac135bd75346.zip
PDF: fix 0x5c(backslash) escape processing in FPDF (#61).
Japanese CP932(Shift_JIS) and Traditional Chinese Big5 have 0x5c(backslash) problem. Contributed Jun NAITOH. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5565 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r--lib/redmine/export/pdf.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/redmine/export/pdf.rb b/lib/redmine/export/pdf.rb
index 24f66cebd..a618f6b79 100644
--- a/lib/redmine/export/pdf.rb
+++ b/lib/redmine/export/pdf.rb
@@ -163,8 +163,6 @@ module Redmine
end
txt = txtar
end
- # 0x5c char handling
- txt.gsub(/\\/, "\\\\\\\\")
end
def RDMCell(w,h=0,txt='',border=0,ln=0,align='',fill=0,link='')