Browse Source

Fix template error on account page (#8562)

tags/v1.11.0-rc1
John Olheiser 4 years ago
parent
commit
240f46a422
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      routers/user/setting/account.go

+ 1
- 1
routers/user/setting/account.go View File

@@ -28,7 +28,6 @@ func Account(ctx *context.Context) {
ctx.Data["Title"] = ctx.Tr("settings")
ctx.Data["PageIsSettingsAccount"] = true
ctx.Data["Email"] = ctx.User.Email
ctx.Data["EmailNotificationsPreference"] = ctx.User.EmailNotifications()

loadAccountData(ctx)

@@ -230,4 +229,5 @@ func loadAccountData(ctx *context.Context) {
return
}
ctx.Data["Emails"] = emails
ctx.Data["EmailNotificationsPreference"] = ctx.User.EmailNotifications()
}

Loading…
Cancel
Save