diff options
author | Unknwon <u@gogs.io> | 2016-03-10 13:52:33 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-10 13:52:33 -0500 |
commit | 067edcdb90fa0dd40c9889f047ba81e37d95d3c8 (patch) | |
tree | 75bd9075c7d270c6b8157905c5d1034504b252c1 | |
parent | 3bd7d3b1c55e19d20d2444fab9584ee7bac23ae7 (diff) | |
parent | 792c13cf0a26020f34e0e43e6e9b95e7c86f0794 (diff) |
Merge pull request #2802 from allonsy/develop
readd 'dashboard' to title
-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 ffebe284..e021a614 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.Data["Title"] = ctxUser.DisplayName() + " - " + ctx.Tr("dashboard") ctx.Data["PageIsDashboard"] = true ctx.Data["PageIsNews"] = true |