Plugin Directory

Changeset 3413559


Ignore:
Timestamp:
12/07/2025 03:35:22 PM (4 months ago)
Author:
ctomczyk
Message:

Release 1.3.22

Location:
spam-prevention-for-contact-form-7-and-comments/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • spam-prevention-for-contact-form-7-and-comments/trunk/README.txt

    r3413544 r3413559  
    44Requires at least: 4.7
    55Tested up to: 6.9
    6 Stable tag: 1.3.21
     6Stable tag: 1.3.22
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    2727
    2828== Changelog ==
     29
     30= 1.3.22 =
     31
     32* Determine
    2933
    3034= 1.3.21 =
  • spam-prevention-for-contact-form-7-and-comments/trunk/public/sitelint-public.php

    r3413544 r3413559  
    110110              const events = ['mousedown', 'mousemove', 'keydown', 'touchstart', 'scroll', 'wheel'];
    111111
    112               const onContactFormFevent = () => {
     112              const onContactFormFevent = (evt) => {
     113                if (typeof evt.isTrusted !== 'boolean' || evt.isTrusted === false) {
     114                  return;
     115                }
     116
    113117                events.forEach(ev => document.removeEventListener(ev, onContactFormFevent));
    114118
  • spam-prevention-for-contact-form-7-and-comments/trunk/sitelint.php

    r3413544 r3413559  
    1010 * Plugin Name:       Spam Prevention for Contact Form 7 and Comments
    1111 * Description:       Automatic Spam Prevention for Contact Form 7 and Comments
    12  * Version:           1.3.21
     12 * Version:           1.3.22
    1313 * Author:            SiteLint
    1414 * Author URI:        https://www.sitelint.com
     
    2727 * Currently plugin version. Use SemVer - https://semver.org
    2828 */
    29 define('SLSP_SITELINT_VERSION', '1.3.21');
     29define('SLSP_SITELINT_VERSION', '1.3.22');
    3030
    3131/**
Note: See TracChangeset for help on using the changeset viewer.