search for: set_time_zone

Displaying 1 result from an estimated 1 matches for "set_time_zone".

Did you mean: sent_timezone
2011 Nov 11
1
time zone not getting saved in the database
Hello, Using rails 2.3.9 and ruby 1.8.7 I am trying add time zone in the site according to user''s time zone (selected by the user from the drop down of time zones)Code is done as follows, but time zone is not getting saved in the database. IN Application Controller before_filter :set_time_zone def set_time_zone Time.zone = current_user.time_zone if current_user end IN View form(haml) f.time_zone_select :time_zone, ActiveSupport::TimeZone.all.sort IN Environment.rb config.time_zone = ''UTC'' IN User table added time_zone as string column -- You received this...