From b67b86d534b945cb24b1add1b07030750a261690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=93=D0=BE=D0=BB=D1=83=D0=B1=D0=B5=D0=B2=20=D0=9F=D0=B0=D0=B2=D0=B5=D0=BB?= Date: Thu, 18 Feb 2010 23:46:15 +0700 Subject: [PATCH] =?UTF-8?q?=D0=91=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D1=8B=D0=B5=20=D1=80=D0=B5=D0=B3=D0=B5=D0=BA=D1=81=D0=BF=D1=8B=20=D0=BF=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lib/action_mailer/quoting.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/vendor/gems/actionmailer-3.0.0.beta/lib/action_mailer/quoting.rb b/vendor/gems/actionmailer-3.0.0.beta/lib/action_mailer/quoting.rb index 70f636b..61efc39 100644 --- a/vendor/gems/actionmailer-3.0.0.beta/lib/action_mailer/quoting.rb +++ b/vendor/gems/actionmailer-3.0.0.beta/lib/action_mailer/quoting.rb @@ -22,7 +22,7 @@ module ActionMailer # A quick-and-dirty regexp for determining whether a string contains any # characters that need escaping. if !defined?(CHARS_NEEDING_QUOTING) - CHARS_NEEDING_QUOTING = /[\000-\011\013\014\016-\037\177-\377]/ + CHARS_NEEDING_QUOTING = Regexp.new '[\000-\011\013\014\016-\037\177-\377]', nil, 'n' end # Quote the given text if it contains any "illegal" characters -- 1.6.5