summaryrefslogtreecommitdiffstats
path: root/routers
diff options
context:
space:
mode:
authorAlec S <linuxbash8@gmail.com>2016-03-09 21:01:43 -0600
committerAlec S <linuxbash8@gmail.com>2016-03-09 21:01:43 -0600
commitaffa3c2dbfee9f5e04c7c29c54a4afe9887bb01a (patch)
treebb9eb06a2fafc59747177f5f78ea67c3c183f012 /routers
parent6775ac7334c7a5a451a309a6e3dc1c85dbf04f6b (diff)
downloadgitea-affa3c2dbfee9f5e04c7c29c54a4afe9887bb01a.tar.gz
gitea-affa3c2dbfee9f5e04c7c29c54a4afe9887bb01a.zip
Remove dashboard keyword from title
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 0e633a9e59..0af94698df 100644
--- a/routers/user/home.go
+++ b/routers/user/home.go
@@ -84,7 +84,7 @@ func retrieveFeeds(ctx *middleware.Context, ctxUserID, userID, offset int64, isP
func Dashboard(ctx *middleware.Context) {
ctxUser := getDashboardContextUser(ctx)
- ctx.Data["Title"] = ctxUser.DisplayName() + " " + ctx.Tr("dashboard")
+ ctx.Data["Title"] = ctxUser.DisplayName()
ctx.Data["PageIsDashboard"] = true
ctx.Data["PageIsNews"] = true