Browse Source

fix #2529

pull/2538/head
Unknwon 9 years ago
parent
commit
a9d68a6884
  1. 2
      gogs.go
  2. 2
      routers/user/profile.go
  3. 2
      templates/.VERSION

2
gogs.go

@ -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())

2
routers/user/profile.go

@ -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)
}

2
templates/.VERSION

@ -1 +1 @@
0.8.25.0130
0.8.25.0131
Loading…
Cancel
Save