diff options
author | Nate Mueller <nate@nearbuysystems.com> | 2011-06-02 20:43:23 -0700 |
---|---|---|
committer | Nate Mueller <nate@nearbuysystems.com> | 2011-06-02 20:51:09 -0700 |
commit | f449da53ac69495e736c7f1ce0f1bc6ebe356081 (patch) | |
tree | 616efc7f8b607d33fa69b59ccca17731d61d4ac1 /activesupport/lib | |
parent | f064664de72a34d24568eadf7340f41876df4b20 (diff) | |
download | rails-f449da53ac69495e736c7f1ce0f1bc6ebe356081.tar.gz rails-f449da53ac69495e736c7f1ce0f1bc6ebe356081.tar.bz2 rails-f449da53ac69495e736c7f1ce0f1bc6ebe356081.zip |
Make String.to_time respect timezones
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/string/conversions.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/string/conversions.rb b/activesupport/lib/active_support/core_ext/string/conversions.rb index 5b2cb6e331..664537eea4 100644 --- a/activesupport/lib/active_support/core_ext/string/conversions.rb +++ b/activesupport/lib/active_support/core_ext/string/conversions.rb @@ -34,9 +34,9 @@ class String # Form can be either :utc (default) or :local. def to_time(form = :utc) return nil if self.blank? - d = ::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec, :sec_fraction).map { |arg| arg || 0 } + d = ::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec, :sec_fraction, :offset).map { |arg| arg || 0 } d[6] *= 1000000 - ::Time.send("#{form}_time", *d) + ::Time.send("#{form}_time", *d[0..6]) - d[7] end def to_date |