diff options
author | Sven Fuchs <svenfuchs@artweb-design.de> | 2008-07-16 11:07:08 -0700 |
---|---|---|
committer | Sven Fuchs <svenfuchs@artweb-design.de> | 2008-07-16 11:07:08 -0700 |
commit | 428b77debdab27c0bd73ec87bda8914d6acdfd3e (patch) | |
tree | abc109eb1f84c5b8c4b6e26851ccd8d7860e6896 /actionpack/lib | |
parent | 0ac342fbe5727c22dbce58e375e9b42dd2a92ef5 (diff) | |
download | rails-428b77debdab27c0bd73ec87bda8914d6acdfd3e.tar.gz rails-428b77debdab27c0bd73ec87bda8914d6acdfd3e.tar.bz2 rails-428b77debdab27c0bd73ec87bda8914d6acdfd3e.zip |
fixing another timezone dependent test
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/translation_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/translation_helper.rb b/actionpack/lib/action_view/helpers/translation_helper.rb index e1010ccf5f..60ac5c8790 100644 --- a/actionpack/lib/action_view/helpers/translation_helper.rb +++ b/actionpack/lib/action_view/helpers/translation_helper.rb @@ -13,7 +13,7 @@ module ActionView end def localize(*args) - I18n.l *args + I18n.localize *args end end end |