##// END OF EJS Templates
Fix for ruby1.9.3....
Jean-Philippe Lang -
r8616:7409963c9a69
parent child
Show More
@@ -98,7 +98,7 module Redmine
98
98
99 def textstring(s)
99 def textstring(s)
100 # Format a text string
100 # Format a text string
101 if s =~ /^</ # This means the string is hex-dumped.
101 if s.chars.first == '<' # This means the string is hex-dumped.
102 return s
102 return s
103 else
103 else
104 return '('+escape(s)+')'
104 return '('+escape(s)+')'
General Comments 0
You need to be logged in to leave comments. Login now