diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-04-03 13:07:42 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-04-03 13:07:42 -0700 |
commit | faf4c67abcc5211e7b5ff45e908fa8a787bdaff2 (patch) | |
tree | 2838d2403f3bae3c31d57ae236f47340897c150a /system/admin/handlers.go | |
parent | e7f4347a81acd1e757739838c3dcd9660f655a35 (diff) |
move iterator to suffix of key to avoid clashing, include status in UI sort
Diffstat (limited to 'system/admin/handlers.go')
-rw-r--r-- | system/admin/handlers.go | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index d04adec..c2d67e9 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -941,8 +941,13 @@ func contentsHandler(res http.ResponseWriter, req *http.Request) { var path = window.location.pathname; var s = sort.val(); var t = getParam('type'); + var status = getParam('status'); - window.location.replace(path + '?type=' + t + '&order=' + s) + if (status == "") { + status = "public"; + } + + window.location.replace(path + '?type=' + t + '&order=' + s + '&status=' + status); }); var order = getParam('order'); |