diff options
author | zeripath <art27@cantab.net> | 2022-09-03 10:33:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-03 10:33:34 +0100 |
commit | de7b87fbc238e0685c01cb26a580b3d21cee623a (patch) | |
tree | b2bc27a5e219853c8e53ed0a6f2abf23b02aede4 /templates/repo/diff | |
parent | 18046eb91e21e03d475f3990e59516b46b6f67e2 (diff) | |
download | gitea-de7b87fbc238e0685c01cb26a580b3d21cee623a.tar.gz gitea-de7b87fbc238e0685c01cb26a580b3d21cee623a.zip |
Do not add links to Posters or Assignees with ID < 0 (#20577)
There are several places in templates/repo/issue/view_content/comments.tmpl where links are made to Posters or Assignees who are Ghosts or have IDs <0.
Fix #20559
Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'templates/repo/diff')
-rw-r--r-- | templates/repo/diff/comments.tmpl | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/templates/repo/diff/comments.tmpl b/templates/repo/diff/comments.tmpl index 0cc7853378..5d298f820c 100644 --- a/templates/repo/diff/comments.tmpl +++ b/templates/repo/diff/comments.tmpl @@ -5,9 +5,7 @@ {{if .OriginalAuthor}} <span class="avatar"><img src="{{AppSubUrl}}/assets/img/avatar_default.png"></span> {{else}} - <a class="avatar" {{if gt .Poster.ID 0}}href="{{.Poster.HomeLink}}"{{end}}> - {{avatar .Poster}} - </a> + {{template "shared/user/avatarlink" .Poster}} {{end}} <div class="content comment-container"> <div class="ui top attached header comment-header df ac sb"> @@ -27,9 +25,7 @@ </span> {{else}} <span class="text grey"> - <a {{if gt .Poster.ID 0}}href="{{.Poster.HomeLink}}"{{end}}> - {{.Poster.GetDisplayName}} - </a> + {{template "shared/user/namelink" .Poster}} {{$.root.locale.Tr "repo.issues.commented_at" (.HashTag|Escape) $createdStr | Safe}} </span> {{end}} |