diff options
Diffstat (limited to 'app/helpers/attachments_helper.rb')
-rw-r--r-- | app/helpers/attachments_helper.rb | 2 |
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 |