diff --git a/src/webu_post.cpp b/src/webu_post.cpp index d64ae026..a27058ec 100644 --- a/src/webu_post.cpp +++ b/src/webu_post.cpp @@ -954,10 +954,14 @@ mhdrslt cls_webu_post::processor_start(const char *upload_data, size_t *upload_d pthread_mutex_lock(&app->mutex_post); process_actions(); pthread_mutex_unlock(&app->mutex_post); - /* Send updated page back to user */ - webu_html = new cls_webu_html(webua); - webu_html->main(); - delete webu_html; + webua->resp_page = + "\n" + "\n" + "
\n" + "OK
\n" + "\n" + "\n"; + webua->mhd_send(); retcd = MHD_YES; } return retcd;