aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web/repo/search.go
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2023-02-11 14:34:11 +0800
committerGitHub <noreply@github.com>2023-02-11 14:34:11 +0800
commite9288c24773157411edec17c9bbcc8c1567e91ee (patch)
treeb34c730a13ab9a56d14b0fcccf1e136ca0233b68 /routers/web/repo/search.go
parent1cb8d14bf71e0b8637c9eaa10808b4fd05139f45 (diff)
downloadgitea-e9288c24773157411edec17c9bbcc8c1567e91ee.tar.gz
gitea-e9288c24773157411edec17c9bbcc8c1567e91ee.zip
Fix improper HTMLURL usages in Go code (#22839)
In Go code, HTMLURL should be only used for external systems, like API/webhook/mail/notification, etc. If a URL is used by `Redirect` or rendered in a template, it should be a relative URL (aka `Link()` in Gitea) Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'routers/web/repo/search.go')
-rw-r--r--routers/web/repo/search.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/repo/search.go b/routers/web/repo/search.go
index 137f38d409..a043198472 100644
--- a/routers/web/repo/search.go
+++ b/routers/web/repo/search.go
@@ -54,7 +54,7 @@ func Search(ctx *context.Context) {
ctx.Data["CodeIndexerUnavailable"] = !code_indexer.IsAvailable()
}
- ctx.Data["SourcePath"] = ctx.Repo.Repository.HTMLURL()
+ ctx.Data["SourcePath"] = ctx.Repo.Repository.Link()
ctx.Data["SearchResults"] = searchResults
ctx.Data["SearchResultLanguages"] = searchResultLanguages