]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of AvatarsHelper
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 13 Nov 2020 12:40:50 +0000 (12:40 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 13 Nov 2020 12:40:50 +0000 (12:40 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20361 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/helpers/avatars_helper.rb

index c37082587d19419635a914cfd972fe696d40d646..ec9c5ac70a382ef53c7c66a22f8d41bb3a018518 100644 (file)
@@ -36,7 +36,7 @@ module AvatarsHelper
 
   # Returns the avatar image tag for the given +user+ if avatars are enabled
   # +user+ can be a User or a string that will be scanned for an email address (eg. 'joe <joe@foo.bar>')
-  def avatar(user, options = { })
+  def avatar(user, options = {})
     if Setting.gravatar_enabled?
       options[:default] = Setting.gravatar_default
       options[:class] = GravatarHelper::DEFAULT_OPTIONS[:class] + " " + options[:class] if options[:class]