summaryrefslogtreecommitdiffstats
path: root/app/helpers/attachments_helper.rb
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-21 13:04:17 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-09-21 13:04:17 +0000
commit02c047c3364eaa7ea841a03d749d2fd3274a1a97 (patch)
treed21bf81d973629bc774453aa37e63890816bd6d7 /app/helpers/attachments_helper.rb
parent3db455b0480f6b3f41796ffd04ee4f3cf4f99222 (diff)
downloadredmine-02c047c3364eaa7ea841a03d749d2fd3274a1a97.tar.gz
redmine-02c047c3364eaa7ea841a03d749d2fd3274a1a97.zip
remove spaces inside {} of AttachmentsHelper
git-svn-id: http://svn.redmine.org/redmine/trunk@20063 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/attachments_helper.rb')
-rw-r--r--app/helpers/attachments_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/attachments_helper.rb b/app/helpers/attachments_helper.rb
index e496958bf..1cfcad945 100644
--- a/app/helpers/attachments_helper.rb
+++ b/app/helpers/attachments_helper.rb
@@ -70,7 +70,7 @@ module AttachmentsHelper
def render_api_attachment(attachment, api, options={})
api.attachment do
render_api_attachment_attributes(attachment, api)
- options.each { |key, value| eval("api.#{key} value") }
+ options.each {|key, value| eval("api.#{key} value")}
end
end