summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2015-02-04 20:04:01 -0500
committerUnknwon <joe2010xtmf@163.com>2015-02-04 20:04:01 -0500
commitf706102890af33c14aa9afc7e62a4c2dd52bd2a4 (patch)
treedf207665e2a986afc64abb46e3a629113f8c83d8
parent7140f50637219cbaffcf21d5082cf6b5c9f1994c (diff)
downloadgitea-f706102890af33c14aa9afc7e62a4c2dd52bd2a4.tar.gz
gitea-f706102890af33c14aa9afc7e62a4c2dd52bd2a4.zip
models: sanitize user full name when update settings
-rw-r--r--gogs.go2
-rw-r--r--models/user.go1
-rw-r--r--templates/.VERSION2
3 files changed, 3 insertions, 2 deletions
diff --git a/gogs.go b/gogs.go
index 1f0f15b8bf..5e69bd68e5 100644
--- a/gogs.go
+++ b/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())
diff --git a/models/user.go b/models/user.go
index f16fbca344..2da0881c81 100644
--- a/models/user.go
+++ b/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
}
diff --git a/templates/.VERSION b/templates/.VERSION
index aa8ee543a2..40246b9eca 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.5.12.0202 Beta \ No newline at end of file
+0.5.12.0204 Beta \ No newline at end of file