Replaced HTML escape character for single quote with URL encoding

This commit is contained in:
Seednode 2023-11-07 20:34:39 -06:00
parent 0c45103fbd
commit 4d384eb4dc
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import (
)
const (
ReleaseVersion string = "3.2.8"
ReleaseVersion string = "3.2.9"
)
var (

View File

@ -91,7 +91,7 @@ Loop:
}
func pathUrlEscape(path string) string {
return strings.Replace(path, `'`, `'`, -1)
return strings.Replace(path, `'`, `%27`, -1)
}
func paginateSorted(path, first, last, queryParams string, regexes *regexes, formats types.Types) (string, error) {