Skip to content

Commit

Permalink
[1541] Add empty alt tag to gravatar
Browse files Browse the repository at this point in the history
  • Loading branch information
rossjones committed Feb 28, 2014
1 parent e15651d commit 839bd7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/lib/helpers.py
Expand Up @@ -774,7 +774,7 @@ def dict_list_reduce(list_, key, unique=True):
def linked_gravatar(email_hash, size=100, default=None):
return literal(
'<a href="https://gravatar.com/" target="_blank" ' +
'title="%s">' % _('Update your avatar at gravatar.com') +
'title="%s" alt="">' % _('Update your avatar at gravatar.com') +
'%s</a>' % gravatar(email_hash, size, default)
)

Expand Down

0 comments on commit 839bd7e

Please sign in to comment.