HEX
Server: Apache/2.4.67 (Debian)
System: Linux vps-b2547eb4 6.1.0-41-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
User: root (0)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /var/www/campus_olsztyn/wp-content/plugins/honeypot/includes/integration/wpa_diviengineform.php
<?php
if ( ! defined( 'ABSPATH' ) ) exit; 

if (!function_exists('wpae_get_blocked_integrations') || !in_array('diviengineform', wpae_get_blocked_integrations())) :

	function my_df_before_process($form_id,$post_array,$form_type){
			if (wpa_check_is_spam($_POST)){
				foreach($_POST as $param => $value){
					if(strpos($param, 'divi-form-submit') === 0){
					$is_divi_engine_form = 'true';
					$divi_engine_form_additional = esc_attr(str_replace('divi-form-submit', '', $param));	
				}
				}
				do_action('wpa_handle_spammers','divi_engine_form', $_POST);
				if (str_ends_with($_SERVER["REQUEST_URI"],"admin-ajax.php")){
					// ajax post
					$result = array( 'result' => 'failed', 'redirect' => '', 'message' => '<B>' . esc_html($GLOBALS['wpa_error_message']) . '</B>', 'message_position' => 'after_button');
					wp_send_json( $result );
				}
				else
				{
					echo "<div id='fb_form{$divi_engine_form_additional}'><p>".$GLOBALS['wpa_error_message']."</p><div></div></div>";
				}

				die();
			}	
	}
	add_action( 'df_before_process', 'my_df_before_process', 10, 3 );

endif;