This project is archived and is in readonly mode.

#4709 ✓stale
tadman

Ruby 1.8.x + I18N String Interpolation with % and %% and <

Reported by tadman | May 26th, 2010 @ 04:54 PM

Upgrading from Rails 2.3.5 to Rails 2.3.8 exposed the following problem with the String#% method where interpolation is performed.

'%.0f<span>%%</span>' % 0.5

Expected result is "0<span>%</span> but instead there is an exception thrown:

malformed format string - %<

This is from the file:

activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/string/interpolate.rb

Where the line in question is:

result = gsub(/%([{<])/, '%%\1')

This is presumably trying to re-escape the angle-bracket style placeholders so they aren't evaluated. The problem is that this is ignoring already escaped % characters.

A possible fix for this is to make it not try and re-escape:

result = gsub(/%%?([{<])/, '%%\1')

Comments and changes to this ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>

People watching this ticket

Pages