2024-04-12 14:52:26 +03:00
|
|
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
|
|
|
// Copyright 2017, 2023 The Gitea Authors. All rights reserved.
|
2022-11-27 21:20:29 +03:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-12-07 10:00:09 +03:00
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2020-02-22 16:08:48 +03:00
|
|
|
"html"
|
2017-12-07 10:00:09 +03:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2020-02-22 16:08:48 +03:00
|
|
|
// SanitizeFlashErrorString will sanitize a flash error string
|
|
|
|
func SanitizeFlashErrorString(x string) string {
|
2020-10-11 23:27:20 +03:00
|
|
|
return strings.ReplaceAll(html.EscapeString(x), "\n", "<br>")
|
2020-02-22 16:08:48 +03:00
|
|
|
}
|