diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-18 23:49:28 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-18 23:49:28 -0700 |
commit | 3414597982c2b4e34d842e9747d1ae58bf8b51b2 (patch) | |
tree | a6a7f3ff6a4b89ef63a8ad1a808909820391fca4 | |
parent | ea4e6f223f26b7f9b2aa818ab3e43cdd356a3f45 (diff) |
updating form enctype to meet ponzu system requirements [multipart/form-data]
-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 ee0ff60..de340ae 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -452,7 +452,7 @@ func adminPostListItem(p editor.Editable, t string) []byte { <span class="post-detail">Updated: ` + updatedTime + `</span> <span class="publish-date right">` + publishTime + `</span> - <form class="quick-delete-post __ponzu right" action="/admin/edit/delete" method="post"> + <form enctype="multipart/form-data" class="quick-delete-post __ponzu right" action="/admin/edit/delete" method="post"> <span>Delete</span> <input type="hidden" name="id" value="` + cid + `" /> <input type="hidden" name="type" value="` + t + `" /> |