summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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