Plugin Directory

Changeset 2680139


Ignore:
Timestamp:
02/16/2022 07:58:41 PM (4 years ago)
Author:
gravityview
Message:

Version 1.2.1 prevents spam catching on Gravity Forms preview pages.

Location:
gravity-forms-zero-spam/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gravity-forms-zero-spam/trunk/gravityforms-zero-spam.php

    r2642678 r2680139  
    44 * Plugin URI:        https://gravityview.co?utm_source=plugin&utm_campaign=zero-spam&utm_content=pluginuri
    55 * Description:       Enhance Gravity Forms to include effective anti-spam measures—without using a CAPTCHA.
    6  * Version:           1.2.0.1
     6 * Version:           1.2.1
    77 * Author:            GravityView
    88 * Author URI:        https://gravityview.co?utm_source=plugin&utm_campaign=zero-spam&utm_content=authoruri
     
    101101    public function check_key_field( $is_spam = false, $form = array(), $entry = array() ) {
    102102
     103        $should_check_key_field = ! GFCommon::is_preview();
     104
    103105        /**
    104106         * Modify whether to process this entry submission for spam.
     
    110112         * @param array $entry The entry currently being processed.
    111113         */
    112         $should_check_key_field = gf_apply_filters( 'gf_zero_spam_check_key_field', rgar( $form, 'id' ), true, $form, $entry );
     114        $should_check_key_field = gf_apply_filters( 'gf_zero_spam_check_key_field', rgar( $form, 'id' ), $should_check_key_field, $form, $entry );
    113115
    114116        if( false === $should_check_key_field ) {
  • gravity-forms-zero-spam/trunk/readme.txt

    r2642678 r2680139  
    33Tags: gravityforms, gravity forms, anti-spam, antispam, spam, spam-blocker, spambot, spammer, add-ons, honeypot
    44Requires at least: 3.0.1
    5 Tested up to: 5.8.2
     5Tested up to: 5.9
    66Stable tag: trunk
    77Requires PHP: 5.2.6
     
    9898== Changelog ==
    9999
     100= 1.2.1 on February 16, 2022 =
     101
     102* Improved: Don't check for spam on the Gravity Forms Preview page
     103* Tested with WordPress 5.9
    100104
    101105= 1.2 & 1.2.0.1 on December 10, 2021 =
Note: See TracChangeset for help on using the changeset viewer.