diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/lists/lists.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/lists/lists.go b/modules/lists/lists.go index 39cc4d0..a6d0284 100644 --- a/modules/lists/lists.go +++ b/modules/lists/lists.go | |||
@@ -464,7 +464,12 @@ func (m *Module) updateListSettings(w http.ResponseWriter, r *http.Request, p ht | |||
464 | list.Name = name | 464 | list.Name = name |
465 | list.Description = description | 465 | list.Description = description |
466 | 466 | ||
467 | m.viewListSettings(w, r, p) | 467 | data := m.g.Renderer.DefaultData() |
468 | data["user"] = user | ||
469 | data["list"] = list | ||
470 | data["notification"] = frontend.NewNotification("Aenderungen gespeichert") | ||
471 | |||
472 | m.g.Renderer.RenderPage("list_settings", w, data) | ||
468 | el.EditList(user, eventlogging.EditListData{ | 473 | el.EditList(user, eventlogging.EditListData{ |
469 | ListID: id, | 474 | ListID: id, |
470 | OldName: oldName, | 475 | OldName: oldName, |