diff options
author | Michael McVady <femtonaut@gmail.com> | 2023-07-08 11:42:23 -0500 |
---|---|---|
committer | Michael McVady <femtonaut@gmail.com> | 2023-07-08 11:42:23 -0500 |
commit | 6c95c9152b466bdb30d7226001bb790a8e8c7c5b (patch) | |
tree | 6016df20546c8ad5683be25ff6ea92567fb3600e /src/clog.c | |
parent | b5c64ec289fe9e07603b3da5f3d246bf88c8a124 (diff) |
Use latest kore RC to fix `http_populate_post`/`textarea` issue
Diffstat (limited to 'src/clog.c')
-rw-r--r-- | src/clog.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -261,8 +261,7 @@ int post_form(struct http_request *req) { char *title = NULL; char *body = NULL; - http_populate_multipart_form(req); - // http_populate_post(req); + http_populate_post(req); if (http_argument_get_string(req, "id", &id)) { kore_log(LOG_INFO, "form id %s.", id); |