Browse Source

more fix on #2268

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
f0939809c4
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      README.md
  2. +1
    -1
      gogs.go
  3. +1
    -1
      routers/repo/setting.go
  4. +1
    -1
      templates/.VERSION

+ 1
- 1
README.md View File

@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra


![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true) ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)


##### Current version: 0.8.13
##### Current version: 0.8.14


| Web | UI | Preview | | Web | UI | Preview |
|:-------------:|:-------:|:-------:| |:-------------:|:-------:|:-------:|


+ 1
- 1
gogs.go View File

@@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting" "github.com/gogits/gogs/modules/setting"
) )


const APP_VER = "0.8.13.1227"
const APP_VER = "0.8.14.1230"


func init() { func init() {
runtime.GOMAXPROCS(runtime.NumCPU()) runtime.GOMAXPROCS(runtime.NumCPU())


+ 1
- 1
routers/repo/setting.go View File

@@ -121,7 +121,7 @@ func SettingsPost(ctx *middleware.Context, form auth.RepoSettingForm) {
} }


ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success")) ctx.Flash.Success(ctx.Tr("repo.settings.update_settings_success"))
ctx.Redirect(ctx.Repo.RepoLink + "/settings")
ctx.Redirect(repo.RepoLink() + "/settings")


case "advanced": case "advanced":
repo.EnableWiki = form.EnableWiki repo.EnableWiki = form.EnableWiki


+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.8.13.1227
0.8.14.1230

Loading…
Cancel
Save