Browse Source

models: sanitize user full name when update settings

Unknwon 10 years ago
parent
commit
f706102890
3 changed files with 3 additions and 2 deletions
  1. 1 1
      gogs.go
  2. 1 0
      models/user.go
  3. 1 1
      templates/.VERSION

+ 1 - 1
gogs.go

@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.5.12.0202 Beta"
+const APP_VER = "0.5.12.0204 Beta"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())

+ 1 - 0
models/user.go

@@ -477,6 +477,7 @@ func UpdateUser(u *User) error {
 	}
 	u.Avatar = avatar.HashEmail(u.AvatarEmail)
 
+	u.FullName = base.Sanitizer.Sanitize(u.FullName)
 	_, err = x.Id(u.Id).AllCols().Update(u)
 	return err
 }

+ 1 - 1
templates/.VERSION

@@ -1 +1 @@
-0.5.12.0202 Beta
+0.5.12.0204 Beta