Plugin Directory

Changeset 3449035


Ignore:
Timestamp:
01/28/2026 09:11:45 PM (6 weeks ago)
Author:
codejitsu
Message:

Update to version 1.12.2 - rename dev reset AJAX action to bypass Pantheon WAF

Location:
workzen-connector/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • workzen-connector/trunk/includes/class-admin-pages.php

    r3448270 r3449035  
    654654                                type: 'POST',
    655655                                data: {
    656                                     action: 'wzconnector_reset_plugin_data',
     656                                    action: 'wzconnector_dev_reinit',
    657657                                    nonce: '<?php echo esc_js( wp_create_nonce( 'wzconnector_nonce' ) ); ?>'
    658658                                },
  • workzen-connector/trunk/includes/class-ajax-handlers.php

    r3448270 r3449035  
    4141
    4242        // Dev mode only: Reset plugin data
     43        // Note: Action named 'dev_reinit' to avoid WAF blocks (Pantheon blocks 'reset_plugin_data')
    4344        if ( defined( 'WORKZEN_DEV' ) && WORKZEN_DEV ) {
    44             add_action( 'wp_ajax_wzconnector_reset_plugin_data', array( $this, 'ajax_reset_plugin_data' ) );
     45            add_action( 'wp_ajax_wzconnector_dev_reinit', array( $this, 'ajax_reset_plugin_data' ) );
    4546        }
    4647    }
  • workzen-connector/trunk/readme.txt

    r3448270 r3449035  
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.12.1
     7Stable tag: 1.12.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • workzen-connector/trunk/workzen-connector.php

    r3448270 r3449035  
    33 * Plugin Name: WorkZen Connector
    44 * Description: Connects WordPress forms to WorkZen CRM. Captures leads from Contact Form 7, WPForms, Gravity Forms, and other popular form plugins, sending them securely to your WorkZen account via the WorkZen API (https://api.workzen.io). Includes floating buttons with online booking functionality.
    5  * Version: 1.12.1
     5 * Version: 1.12.2
    66 * Author: Ika Balzam
    77 * Author URI: https://workzen.io
     
    2020
    2121// Define plugin constants
    22 define( 'WZC_VERSION', '1.12.1' );
     22define( 'WZC_VERSION', '1.12.2' );
    2323define( 'WZC_PLUGIN_FILE', __FILE__ );
    2424define( 'WZC_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.