summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-03-27 18:21:37 -0400
committerUnknwon <u@gogs.io>2016-03-27 18:21:37 -0400
commit762ab056a2ee976037d9fe929c37ab5bdb940e7a (patch)
treefa2b7aa322fd0b66f0a22b456d0840c17495c0bb /routers
parent78481f0e4293647d0a208253f146abbd45461d9a (diff)
downloadgitea-762ab056a2ee976037d9fe929c37ab5bdb940e7a.tar.gz
gitea-762ab056a2ee976037d9fe929c37ab5bdb940e7a.zip
Fix XORM IN condition table name parse
Diffstat (limited to 'routers')
-rw-r--r--routers/user/home.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/home.go b/routers/user/home.go
index 0c48d6cc2c..eb6a6f099b 100644
--- a/routers/user/home.go
+++ b/routers/user/home.go
@@ -268,7 +268,7 @@ func Issues(ctx *context.Context) {
SortType: sortType,
})
if err != nil {
- ctx.Handle(500, "Issues: %v", err)
+ ctx.Handle(500, "Issues", err)
return
}