GoAdminGroup / go-admin

Using a deprecated function, variable, constant or field GO-W1009
Anti-pattern
Major
1 occurrence in this check
strings.Title has been deprecated since Go 1.18 and an alternative has been available since Go 1.0: The rule Title uses for word boundaries does not handle Unicode punctuation properly. Use golang.org/x/text/cases instead.
 75			tokens = append(tokens, tk)
 76			err = t.Execute(w, InstallationPage{
 77				Version:       system.Version(),
 78				GoVer:         strings.Title(runtime.Version()), 79				Port:          port,
 80				CSRFToken:     tk,
 81				CurrentLang:   curLang,