pkg/template: fix NewLine2br return type to string

pull/5254/merge
Unknwon 2018-06-02 08:15:56 +08:00
parent bef7f6745c
commit e25fe22f9d
No known key found for this signature in database
GPG Key ID: 7A02C406FAC875A2
3 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ import (
"github.com/gogs/gogs/pkg/setting"
)
const APP_VER = "0.11.50.0530"
const APP_VER = "0.11.51.0602"
func init() {
setting.AppVer = APP_VER

View File

@ -131,9 +131,9 @@ func Str2html(raw string) template.HTML {
return template.HTML(markup.Sanitize(raw))
}
// Simple filter, converts newline symbols to <br>
func NewLine2br(raw string) template.HTML {
return template.HTML(strings.Replace(raw, "\n", "<br>", -1))
// NewLine2br simply replaces "\n" to "<br>".
func NewLine2br(raw string) string {
return strings.Replace(raw, "\n", "<br>", -1)
}
func List(l *list.List) chan interface{} {

View File

@ -1 +1 @@
0.11.50.0530
0.11.51.0602