Changeset 3157195
- Timestamp:
- 09/25/2024 02:09:10 AM (18 months ago)
- Location:
- bsk-gravityforms-blacklist/trunk
- Files:
-
- 3 edited
-
bsk-gravityforms-blacklist.php (modified) (2 diffs)
-
classes/dashboard/forminator/settings.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bsk-gravityforms-blacklist/trunk/bsk-gravityforms-blacklist.php
r3121967 r3157195 5 5 * Plugin URI: https://www.bannersky.com/gravity-forms-blacklist-and-custom-validation/ 6 6 * 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.17 * Version: 3.9 8 8 * Author: BannerSky.com 9 9 * Author URI: http://www.bannersky.com/ … … 29 29 private static $instance; 30 30 31 public static $_plugin_version = '3. 8';31 public static $_plugin_version = '3.9'; 32 32 private static $_bsk_gfblcv_db_version = '3.2'; 33 33 private static $_bsk_gfblcv_saved_db_version_option = '_bsk_gfbl_db_ver_'; -
bsk-gravityforms-blacklist/trunk/classes/dashboard/forminator/settings.php
r2901651 r3157195 4 4 public $_bsk_gfblcv_OBJ_frmt_form_settings = false; 5 5 public $_bsk_gfblcv_OBJ_frmt_field_settings = false; 6 7 var $settings_targets = array( 'form-settings', 'field-settings' ); 6 8 7 9 public function __construct() { … … 41 43 <?php 42 44 $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 } 43 48 echo '<input type="hidden" id="bsk_gfblcv_forminator_settings_target_tab_ID" value="'.$target_tab.'" />'; 44 49 } -
bsk-gravityforms-blacklist/trunk/readme.txt
r3121967 r3157195 4 4 Tags: gravity form,blacklist,ip blacklist,invitation code,formidable forms 5 5 Requires at least: 4.0 6 Tested up to: 6.6 7 Stable tag: 3. 8.16 Tested up to: 6.6.2 7 Stable tag: 3.9 8 8 9 9 Checks field content and block submitting base on your keywords. Blocking IP, Country is only supported in the Pro version. … … 42 42 == Changelog == 43 43 44 3.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 44 68 3.8.1 45 69
Note: See TracChangeset
for help on using the changeset viewer.