Commit 3d7edf0fe3036f56b426952aa3574d174f4f2016
Exists in
master
and in
4 other branches
Merge pull request #5862 from jvanbaarsen/patch-1
Fixed the no_avatar.png path
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/application_helper.rb
| ... | ... | @@ -62,7 +62,7 @@ module ApplicationHelper |
| 62 | 62 | size = 40 if size.nil? || size <= 0 |
| 63 | 63 | |
| 64 | 64 | if !Gitlab.config.gravatar.enabled || user_email.blank? |
| 65 | - 'no_avatar.png' | |
| 65 | + '/assets/no_avatar.png' | |
| 66 | 66 | else |
| 67 | 67 | gravatar_url = request.ssl? || gitlab_config.https ? Gitlab.config.gravatar.ssl_url : Gitlab.config.gravatar.plain_url |
| 68 | 68 | user_email.strip! | ... | ... |