1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Remove not necessary changelog about time zone array mutation

This seemed to be introduced in master by
9dd64f2e0c, so there's no need to add a
changelog entry for fixing it.

[ci skip]
This commit is contained in:
Carlos Antonio da Silva 2013-02-21 12:52:03 -03:00
parent e2096e8882
commit b20823ba41

View file

@ -5,14 +5,6 @@
*Prem Sichanugrist*
* Fix `time_zone_options_for_select` to call `dup` on the returned TimeZone array.
Previously if you supplied :priority_zones options to `time_zone_options_for_select`
the memoized ActiveSupport::TimeZone.all array would be mutated. Calling
`dup` prevents mutation of the main TimeZones array.
*Brian McManus*
* Remove support for parsing YAML parameters from request.
*Aaron Patterson*