Ruby 1.9 reports this as as an invalid multibyte char. An apparent copy/paste error from a client that attempted to insert 'smart' quotes.
1 files changed, 1 insertions(+), 1 deletions(-) M src/rexml/doctype.rb
M src/rexml/doctype.rb +1 -1
@@ 188,7 188,7 @@ module REXML # Method contributed by Henrik Martensson def strip_quotes(quoted_string) - quoted_string =~ /^[\'\"].*[\´\"]$/ ? + quoted_string =~ /^[\'\"].*[\'\"]$/ ? quoted_string[1, quoted_string.length-2] : quoted_string end