mirror of https://github.com/go-gitea/gitea.git
Escape elems as well
This commit is contained in:
parent
55cd4a6248
commit
8bf49596fe
|
@ -28,6 +28,10 @@ func URLJoin(base string, elems ...string) string {
|
|||
// We do need to escape special chars here or else they can be silently discarded
|
||||
// in the ResolveReference call below
|
||||
base = PathEscapeSegments(base)
|
||||
for k, v := range elems {
|
||||
elems[k] = PathEscapeSegments(v)
|
||||
}
|
||||
|
||||
if !strings.HasSuffix(base, "/") {
|
||||
base += "/"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue