diff options
author | Unknwon <u@gogs.io> | 2016-01-31 13:33:36 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-01-31 13:33:36 -0500 |
commit | a9d68a6884aa3935f2d00071df1f6b7accdc7f6d (patch) | |
tree | 6956d15b524d5588f1c0674e22c85c175004abac | |
parent | 1c1246fcb9c5537bebeb2335b38c0fd2278a8426 (diff) | |
download | gitea-a9d68a6884aa3935f2d00071df1f6b7accdc7f6d.tar.gz gitea-a9d68a6884aa3935f2d00071df1f6b7accdc7f6d.zip |
fix #2529
-rw-r--r-- | gogs.go | 2 | ||||
-rw-r--r-- | routers/user/profile.go | 2 | ||||
-rw-r--r-- | templates/.VERSION | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -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()) diff --git a/routers/user/profile.go b/routers/user/profile.go index 1452b29733..0a876610ed 100644 --- a/routers/user/profile.go +++ b/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) } diff --git a/templates/.VERSION b/templates/.VERSION index 22d091a7fc..93ddc737eb 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.8.25.0130
\ No newline at end of file +0.8.25.0131
\ No newline at end of file |