Browse Source

Add alternative display for profile picture

When displaying user picture, an alternative display (for
accessibility) was missing. The alternative text "Avatar" is set.
Polycapa 8 years ago
parent
commit
8433b76eac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/template/default/social/avatar_block.tpl

+ 1 - 1
main/template/default/social/avatar_block.tpl

@@ -18,7 +18,7 @@
             </div>
         {% elseif show_user %}
             <a href="{{ user_image.big }}" class="expand-image">
-                <img class="img-responsive img-circle" src="{{ user_image.big }}">
+                <img class="img-responsive img-circle" src="{{ user_image.big }}" alt="Avatar">
             </a>
         {% endif %}
     </div>