Changeset 3413559
- Timestamp:
- 12/07/2025 03:35:22 PM (4 months ago)
- Location:
- spam-prevention-for-contact-form-7-and-comments/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
public/sitelint-public.php (modified) (1 diff)
-
sitelint.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
spam-prevention-for-contact-form-7-and-comments/trunk/README.txt
r3413544 r3413559 4 4 Requires at least: 4.7 5 5 Tested up to: 6.9 6 Stable tag: 1.3.2 16 Stable tag: 1.3.22 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 27 27 28 28 == Changelog == 29 30 = 1.3.22 = 31 32 * Determine 29 33 30 34 = 1.3.21 = -
spam-prevention-for-contact-form-7-and-comments/trunk/public/sitelint-public.php
r3413544 r3413559 110 110 const events = ['mousedown', 'mousemove', 'keydown', 'touchstart', 'scroll', 'wheel']; 111 111 112 const onContactFormFevent = () => { 112 const onContactFormFevent = (evt) => { 113 if (typeof evt.isTrusted !== 'boolean' || evt.isTrusted === false) { 114 return; 115 } 116 113 117 events.forEach(ev => document.removeEventListener(ev, onContactFormFevent)); 114 118 -
spam-prevention-for-contact-form-7-and-comments/trunk/sitelint.php
r3413544 r3413559 10 10 * Plugin Name: Spam Prevention for Contact Form 7 and Comments 11 11 * Description: Automatic Spam Prevention for Contact Form 7 and Comments 12 * Version: 1.3.2 112 * Version: 1.3.22 13 13 * Author: SiteLint 14 14 * Author URI: https://www.sitelint.com … … 27 27 * Currently plugin version. Use SemVer - https://semver.org 28 28 */ 29 define('SLSP_SITELINT_VERSION', '1.3.2 1');29 define('SLSP_SITELINT_VERSION', '1.3.22'); 30 30 31 31 /**
Note: See TracChangeset
for help on using the changeset viewer.