diff options
author | Akira Matsuda <ronnie@dio.jp> | 2015-02-21 06:16:48 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2015-02-21 06:16:48 +0900 |
commit | 2dff9d0f3e9bee5a5a21952ce8e6612e39620417 (patch) | |
tree | cbbf84d665b64d94f2c9ca86bb095d5f3d898b5f /activesupport/lib | |
parent | 17e0878005c4fd51b0bbe91dbc4f5f25b3d98e49 (diff) | |
download | rails-2dff9d0f3e9bee5a5a21952ce8e6612e39620417.tar.gz rails-2dff9d0f3e9bee5a5a21952ce8e6612e39620417.tar.bz2 rails-2dff9d0f3e9bee5a5a21952ce8e6612e39620417.zip |
s/around_filter/around_action/
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/time/zones.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/time/zones.rb b/activesupport/lib/active_support/core_ext/time/zones.rb index 0668eadb1e..d683e7c777 100644 --- a/activesupport/lib/active_support/core_ext/time/zones.rb +++ b/activesupport/lib/active_support/core_ext/time/zones.rb @@ -26,7 +26,7 @@ class Time # <tt>current_user.time_zone</tt> just needs to return a string identifying the user's preferred time zone: # # class ApplicationController < ActionController::Base - # around_filter :set_time_zone + # around_action :set_time_zone # # def set_time_zone # if logged_in? |