added protection for first post

This commit is contained in:
asus
2024-04-16 14:19:14 +02:00
parent f92e86a473
commit 8479efc51e
2 changed files with 6 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ Plugin Name: hggg_fbpatch
Plugin URI: Plugin URI:
Description: some patchs for the form_builder plugin's bugs Description: some patchs for the form_builder plugin's bugs
Author: hugogogo Author: hugogogo
Version: 0.2.0 Version: 0.2.1
Author URI: Author URI:
*/ */

View File

@@ -24,7 +24,7 @@ if (!defined('ABSPATH')) {
function form_partner_before_process($form_id, $post_array, $form_type) { function form_partner_before_process($form_id, $post_array, $form_type) {
//error_log("post_array: " . json_encode($post_array)); //error_log("post_array: " . json_encode($post_array));
if (is_null($post_array) || empty($post_array)) { if (empty($post_array)) {
//nothing to overwrite //nothing to overwrite
return Fbpatch::set_post_elements_to_forget(0, false, array()); return Fbpatch::set_post_elements_to_forget(0, false, array());
} }
@@ -32,6 +32,10 @@ function form_partner_before_process($form_id, $post_array, $form_type) {
//nothing to overwrite //nothing to overwrite
return Fbpatch::set_post_elements_to_forget(0, false, array()); return Fbpatch::set_post_elements_to_forget(0, false, array());
} }
if (!isset($post_array['ID']) || empty($post_array['ID'])) {
//nothing to overwrite
return Fbpatch::set_post_elements_to_forget(0, false, array());
}
/* /*