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