> Hello, > There appears to be a strange bug in Rails 2.1.1 where if I set a > datetime > field to YYYY-MM-DD 00:00:00 (using TimeZone support) Rails returns > nil, > instead of YYYY-MM-DD 00:00:00 > > Here is confirmed output: > >>> c = Clip.find(53385) > => #<Clip id: 53385, title: "test 2", description: "test2", keywords: > "test2", publish_date: "2008-11-03 11:13:00"> >>> c.publish_date = "2008-11-03 19:00:00" > => "2008-11-03 19:00:00" >>> c.save > => true >>> c = Clip.find(53385) > => #<Clip id: 53385, title: "test 2", description: "test2", keywords: > "test2", publish_date: nil> >>> c.publish_date > => nil
Your example isn't setting it to 00:00:00, but 19:00:00 ? Also, what does the database say? I'd want to see it confirmed there as well. And lastly, are there any before/after filters on this model? Any triggers in the database that might affect it? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

