diff options
author | Unknwon <u@gogs.io> | 2015-12-30 18:47:32 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-30 18:47:32 -0500 |
commit | 8d58e06ad850bc4e01371d286e8923c55b5b2d1a (patch) | |
tree | 5e99a8dd98574647ec98a5814d1a0c6871bdd881 | |
parent | b8fbf6559dba348b85b70810947b67802d26fb76 (diff) |
more fix on #2268
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | routers/repo/setting.go | 2 | ||||
-rw-r--r-- | templates/.VERSION | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -3,7 +3,7 @@ Gogs - Go Git Service [ -##### Current version: 0.8.13 +##### Current version: 0.8.14 | Web | UI | Preview | |:-------------:|:-------:|:-------:| @@ -17,7 +17,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.8.13.1227" +const APP_VER = "0.8.14.1230" func init() { runtime.GOMAXPROCS(runtime.NumCPU()) diff --git a/routers/repo/setting.go b/routers/repo/setting.go index 9e6ae8d4..507984e5 100644 --- a/routers/repo/setting.go +++ b/routers/repo/setting.go @@ -121,7 +121,7 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) { } ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success")) - ctx.Redirect(ctx.Repo.RepoLink + "/settings") + ctx.Redirect(repo.RepoLink() + "/settings") case "advanced": repo.EnableWiki = form.EnableWiki diff --git a/templates/.VERSION b/templates/.VERSION index cc6aa49a..b5c863bb 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.8.13.1227
\ No newline at end of file +0.8.14.1230
\ No newline at end of file |