mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 17:29:11 +01:00
add missing template variable on organisation settings (#7385)
fix #6755 Signed-off-by: Michael Gnehr <michael@gnehr.de>
This commit is contained in:
parent
1fc90bb474
commit
0622e83055
1 changed files with 1 additions and 0 deletions
|
@ -39,6 +39,7 @@ func Settings(ctx *context.Context) {
|
||||||
func SettingsPost(ctx *context.Context, form auth.UpdateOrgSettingForm) {
|
func SettingsPost(ctx *context.Context, form auth.UpdateOrgSettingForm) {
|
||||||
ctx.Data["Title"] = ctx.Tr("org.settings")
|
ctx.Data["Title"] = ctx.Tr("org.settings")
|
||||||
ctx.Data["PageIsSettingsOptions"] = true
|
ctx.Data["PageIsSettingsOptions"] = true
|
||||||
|
ctx.Data["CurrentVisibility"] = structs.VisibleType(ctx.Org.Organization.Visibility)
|
||||||
|
|
||||||
if ctx.HasError() {
|
if ctx.HasError() {
|
||||||
ctx.HTML(200, tplSettingsOptions)
|
ctx.HTML(200, tplSettingsOptions)
|
||||||
|
|
Loading…
Reference in a new issue