diff options
author | Norwin <noerw@users.noreply.github.com> | 2021-03-12 21:47:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-12 21:47:52 +0000 |
commit | 19bcd29c7e09dc96880af72c25297d9927db4244 (patch) | |
tree | abe8dd1599797b51dea348c333bbe1517cad0778 /templates/mail | |
parent | 3c7582061f0b2165d8a64445d80c35a92cdef8c6 (diff) | |
download | gitea-19bcd29c7e09dc96880af72c25297d9927db4244.tar.gz gitea-19bcd29c7e09dc96880af72c25297d9927db4244.zip |
fix release mail html template (#14975)
was missing an </a>
Diffstat (limited to 'templates/mail')
-rw-r--r-- | templates/mail/release.tmpl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/mail/release.tmpl b/templates/mail/release.tmpl index bb0eb17a56..04b8c3bf51 100644 --- a/templates/mail/release.tmpl +++ b/templates/mail/release.tmpl @@ -12,8 +12,10 @@ </head> <body> - <p><b>@{{.Release.Publisher.Name}}</b> released <a href="{{.Release.HTMLURL}}">{{.Release.TagName}}</a> - in <a href="{{AppUrl}}{{.Release.Repo.OwnerName}}/{{.Release.Repo.Name}}">{{.Release.Repo.FullName}} </p> + <p> + <b>@{{.Release.Publisher.Name}}</b> released <a href="{{.Release.HTMLURL}}">{{.Release.TagName}}</a> + in <a href="{{AppUrl}}{{.Release.Repo.OwnerName}}/{{.Release.Repo.Name}}">{{.Release.Repo.FullName}}</a> + </p> <h4>Title: {{.Release.Title}}</h4> <p> Note: <br> |