aboutsummaryrefslogtreecommitdiff
path: root/gogs.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2017-04-04 19:40:46 -0400
committerUnknwon <u@gogs.io>2017-04-04 19:40:46 -0400
commitae1d50d19a4ffe1b527429978ebff6fdd35b71e8 (patch)
tree65a54a5c224ecf125cf827b13039eab0f2a24359 /gogs.go
parentfe25effe7c3d3a2b27d450747ae321b9795ebdc6 (diff)
models/mirror: escape credentials before write mirror address (#4014)
Special characters such as '@', ';', '#' and ':' could occur in password portion of credentials, which breaks the interpretation and saves 'config' file in with extra characters that are not recognized by Git (due to INI library).
Diffstat (limited to 'gogs.go')
-rw-r--r--gogs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gogs.go b/gogs.go
index ccf1b6ab..dfdbe528 100644
--- a/gogs.go
+++ b/gogs.go
@@ -16,7 +16,7 @@ import (
"github.com/gogits/gogs/pkg/setting"
)
-const APP_VER = "0.11.2.0404"
+const APP_VER = "0.11.3.0404"
func init() {
setting.AppVer = APP_VER