Browse Source

fix #2529

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
094fbc8b2e
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      gogs.go
  2. +1
    -1
      routers/user/profile.go
  3. +1
    -1
      templates/.VERSION

+ 1
- 1
gogs.go View File

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

const APP_VER = "0.8.25.0130"
const APP_VER = "0.8.25.0131"

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


+ 1
- 1
routers/user/profile.go View File

@@ -25,7 +25,7 @@ func GetUserByName(ctx *middleware.Context, name string) *models.User {
user, err := models.GetUserByName(name)
if err != nil {
if models.IsErrUserNotExist(err) {
ctx.Error(404)
ctx.Handle(404, "GetUserByName", nil)
} else {
ctx.Handle(500, "GetUserByName", err)
}


+ 1
- 1
templates/.VERSION View File

@@ -1 +1 @@
0.8.25.0130
0.8.25.0131

Loading…
Cancel
Save