diff options
author | Alec S <linuxbash8@gmail.com> | 2016-03-09 21:01:43 -0600 |
---|---|---|
committer | Alec S <linuxbash8@gmail.com> | 2016-03-09 21:01:43 -0600 |
commit | affa3c2dbfee9f5e04c7c29c54a4afe9887bb01a (patch) | |
tree | bb9eb06a2fafc59747177f5f78ea67c3c183f012 /routers | |
parent | 6775ac7334c7a5a451a309a6e3dc1c85dbf04f6b (diff) | |
download | gitea-affa3c2dbfee9f5e04c7c29c54a4afe9887bb01a.tar.gz gitea-affa3c2dbfee9f5e04c7c29c54a4afe9887bb01a.zip |
Remove dashboard keyword from title
Diffstat (limited to 'routers')
-rw-r--r-- | routers/user/home.go | 2 |
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 |