diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-12-22 14:41:44 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2013-12-22 14:41:44 +0000 |
commit | 14bd57eb4772fa1c0cb7d45d9caea18ad3aa2250 (patch) | |
tree | cf0e07c1300f8aa2111f7464ffae14c083a5044d /app | |
parent | 4333a80bc1f9680782bdb468fceff98d30b1e32a (diff) | |
download | redmine-14bd57eb4772fa1c0cb7d45d9caea18ad3aa2250.tar.gz redmine-14bd57eb4772fa1c0cb7d45d9caea18ad3aa2250.zip |
back out r12441
It is not compatible with Ruby 1.8.7.
git-svn-id: http://svn.redmine.org/redmine/trunk@12443 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/helpers/application_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 62308a373..fac002565 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1179,7 +1179,7 @@ module ApplicationHelper source end end - super *sources, options + super sources, options end # Overrides Rails' image_tag with themes and plugins support. @@ -1212,7 +1212,7 @@ module ApplicationHelper end end end - super *sources, options + super sources, options end # TODO: remove this in 2.5.0 |