aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorKacper Walanus <kacper@walanus.com>2015-11-15 22:34:07 +0100
committerKacper Walanus <kacper@walanus.com>2015-11-15 22:34:07 +0100
commit7de7f21e1528a9d299ae22089a371da2505a6c0c (patch)
treece9bacaa34b3ae386777d4b05768353ef316c1c4 /activesupport
parente38e0c61e9d73b3531a02c6dd44c9694f64f2c0a (diff)
downloadrails-7de7f21e1528a9d299ae22089a371da2505a6c0c.tar.gz
rails-7de7f21e1528a9d299ae22089a371da2505a6c0c.tar.bz2
rails-7de7f21e1528a9d299ae22089a371da2505a6c0c.zip
Fix wrong timezone mapping for Switzerland [22233]
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/values/time_zone.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb
index 6404f65612..7ca3592520 100644
--- a/activesupport/lib/active_support/values/time_zone.rb
+++ b/activesupport/lib/active_support/values/time_zone.rb
@@ -86,7 +86,8 @@ module ActiveSupport
"Paris" => "Europe/Paris",
"Amsterdam" => "Europe/Amsterdam",
"Berlin" => "Europe/Berlin",
- "Bern" => "Europe/Berlin",
+ "Bern" => "Europe/Zurich",
+ "Zurich" => "Europe/Zurich",
"Rome" => "Europe/Rome",
"Stockholm" => "Europe/Stockholm",
"Vienna" => "Europe/Vienna",