summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/helpers/avatars_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/avatars_helper.rb b/app/helpers/avatars_helper.rb
index 71898a4d4..7e2a1fffd 100644
--- a/app/helpers/avatars_helper.rb
+++ b/app/helpers/avatars_helper.rb
@@ -24,14 +24,14 @@ module AvatarsHelper
return '' unless user
options.merge!(:title => l(:field_assigned_to) + ": " + user.name)
- avatar(user, options).html_safe
+ avatar(user, options).to_s.html_safe
end
def author_avatar(user, options={})
return '' unless user
options.merge!(:title => l(:field_author) + ": " + user.name)
- avatar(user, options).html_safe
+ avatar(user, options).to_s.html_safe
end
# Returns the avatar image tag for the given +user+ if avatars are enabled