summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-01-31 13:33:36 -0500
committerUnknwon <u@gogs.io>2016-01-31 13:33:36 -0500
commita9d68a6884aa3935f2d00071df1f6b7accdc7f6d (patch)
tree6956d15b524d5588f1c0674e22c85c175004abac
parent1c1246fcb9c5537bebeb2335b38c0fd2278a8426 (diff)
downloadgitea-a9d68a6884aa3935f2d00071df1f6b7accdc7f6d.tar.gz
gitea-a9d68a6884aa3935f2d00071df1f6b7accdc7f6d.zip
fix #2529
-rw-r--r--gogs.go2
-rw-r--r--routers/user/profile.go2
-rw-r--r--templates/.VERSION2
3 files changed, 3 insertions, 3 deletions
diff --git a/gogs.go b/gogs.go
index 0b93a0840c..e4a007af5e 100644
--- a/gogs.go
+++ b/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())
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