diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-23 08:40:40 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-23 08:40:40 -0400 |
commit | 97debac18534e030924654befc6dc1eeb870a38b (patch) | |
tree | 957bc269e6dcf176f1c242e8be2a7f461daa12c8 /routers/dashboard.go | |
parent | 97e82a0ff6286fd0a42281cd1e34dd734110e2f4 (diff) | |
download | gitea-97debac18534e030924654befc6dc1eeb870a38b.tar.gz gitea-97debac18534e030924654befc6dc1eeb870a38b.zip |
SSL enable config option
Diffstat (limited to 'routers/dashboard.go')
-rw-r--r-- | routers/dashboard.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/dashboard.go b/routers/dashboard.go index dafe9f31ec..76ecc3f676 100644 --- a/routers/dashboard.go +++ b/routers/dashboard.go @@ -26,6 +26,6 @@ func Help(ctx *middleware.Context) { func NotFound(ctx *middleware.Context) { ctx.Data["PageIsNotFound"] = true - ctx.Data["Title"] = 404 + ctx.Data["Title"] = "Page Not Found" ctx.Handle(404, "home.NotFound", nil) } |