Plugin Directory

Changeset 3157195


Ignore:
Timestamp:
09/25/2024 02:09:10 AM (18 months ago)
Author:
bannersky
Message:

version 3.9

Location:
bsk-gravityforms-blacklist/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bsk-gravityforms-blacklist/trunk/bsk-gravityforms-blacklist.php

    r3121967 r3157195  
    55* Plugin URI: https://www.bannersky.com/gravity-forms-blacklist-and-custom-validation/
    66* Description: The plugin help you avoid spam submissions from GravityForms, Formidable Forms, WP Forms. You may set it to use blacklist, whitelist, ip address or email to validate visitor's input and only allow valid entry submitted. It support validate multiple fields.
    7 * Version: 3.8.1
     7* Version: 3.9
    88* Author: BannerSky.com
    99* Author URI: http://www.bannersky.com/
     
    2929    private static $instance;
    3030   
    31     public static $_plugin_version = '3.8';
     31    public static $_plugin_version = '3.9';
    3232    private static $_bsk_gfblcv_db_version = '3.2';
    3333    private static $_bsk_gfblcv_saved_db_version_option = '_bsk_gfbl_db_ver_';
  • bsk-gravityforms-blacklist/trunk/classes/dashboard/forminator/settings.php

    r2901651 r3157195  
    44    public $_bsk_gfblcv_OBJ_frmt_form_settings = false;
    55    public $_bsk_gfblcv_OBJ_frmt_field_settings = false;
     6
     7    var $settings_targets = array( 'form-settings', 'field-settings' );
    68
    79    public function __construct() {
     
    4143        <?php
    4244        $target_tab = isset($_REQUEST['target']) ? sanitize_text_field($_REQUEST['target']) : '';
     45        if ( ! in_array( $target_tab, $this->settings_targets ) ) {
     46            $target_tab = $this->settings_targets[0];
     47        }
    4348        echo '<input type="hidden" id="bsk_gfblcv_forminator_settings_target_tab_ID" value="'.$target_tab.'" />';
    4449    }
  • bsk-gravityforms-blacklist/trunk/readme.txt

    r3121967 r3157195  
    44Tags: gravity form,blacklist,ip blacklist,invitation code,formidable forms
    55Requires at least: 4.0
    6 Tested up to: 6.6
    7 Stable tag: 3.8.1
     6Tested up to: 6.6.2
     7Stable tag: 3.9
    88
    99Checks field content and block submitting base on your keywords. Blocking IP, Country is only supported in the Pro version.
     
    4242== Changelog ==
    4343
     443.9
     45
     46* ( Pro Version )Added: support Block IP ranges such as 97.157.155.*, 97.157.*, 97.*
     47
     48* ( Pro Version )Added: new tag [ITEM_VALUE] to show blocked item( keyword ) in validation message.
     49
     50* ( Pro Version )Fixed: the issue of cannot block word with symbols.
     51
     52* ( Pro Version )Fixed: remove the html error message when add IP list
     53
     54* Fixed: a Cross Site Scripting (XSS) vulnerability in backend.
     55
     56* Compatible with Gravity Forms 2.8.17
     57
     58* Compatible with Formidable Forms 6.14
     59
     60* Compatible with WPForms 1.9.0.4
     61
     62* Compatible with Forminator 1.35.0
     63
     64* Compatible with Contact Form 7 5.9.8
     65
     66* Compatible with WordPress 6.6.2
     67
    44683.8.1
    4569
Note: See TracChangeset for help on using the changeset viewer.