diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-11-07 19:35:40 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-11-07 19:35:40 -0800 |
commit | e9e9ea47d8bcbdbcf91a2ad822e107d8561a9822 (patch) | |
tree | 9b894e42a62cd0f13dcaf0c8ae2298548c9ade05 /system/admin/handlers.go | |
parent | 3c1b5d47d3c980d129c0839ddf8682ce80fad3fe (diff) |
updating Identifiable interface, renaming its method and changing name where used throughout codebase
Diffstat (limited to 'system/admin/handlers.go')
-rw-r--r-- | system/admin/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 1f277e0..e653d29 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -946,7 +946,7 @@ func editHandler(res http.ResponseWriter, req *http.Request) { log.Println("Content type", t, "doesn't implement editor.Identifiable") return } - s.SetContentID(-1) + s.SetItemID(-1) } |