Changeset 3077493
- Timestamp:
- 04/26/2024 09:29:50 AM (2 years ago)
- Location:
- adcaptcha
- Files:
-
- 8 edited
- 1 copied
-
tags/1.1.3 (copied) (copied from adcaptcha/trunk)
-
tags/1.1.3/adcaptcha.php (modified) (1 diff)
-
tags/1.1.3/readme.txt (modified) (2 diffs)
-
tags/1.1.3/src/Plugin/ContactForm7/Forms.php (modified) (1 diff)
-
tags/1.1.3/src/Settings/Settings.php (modified) (1 diff)
-
trunk/adcaptcha.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Plugin/ContactForm7/Forms.php (modified) (1 diff)
-
trunk/src/Settings/Settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
adcaptcha/tags/1.1.3/adcaptcha.php
r3077129 r3077493 3 3 * Plugin Name: adCAPTCHA for WordPress 4 4 * Description: Secure your site. Elevate your brand. Boost Ad Revenue. 5 * Version: 1.1. 25 * Version: 1.1.3 6 6 * Requires at least: 6.4.2 7 7 * Requires PHP: 7.4 -
adcaptcha/tags/1.1.3/readme.txt
r3077129 r3077493 5 5 Requires at least: 6.0 6 6 Tested up to: 6.4 7 Stable tag: 1.1. 27 Stable tag: 1.1.3 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 98 98 = 1.1.2 = 99 99 - Minor patch: Fix to cf7 and hubspot with adCAPTCHA compatibility 100 101 = 1.1.3 = 102 - Minor patch: Fix to cf7 error message -
adcaptcha/tags/1.1.3/src/Plugin/ContactForm7/Forms.php
r3077129 r3077493 71 71 submitButton.addEventListener("click", function(event) { 72 72 if (!window.adcap || !window.adcap.successToken) { 73 console.log(window.adcap.successToken);74 73 event.preventDefault(); 74 var errorMessage = form.querySelector(".wpcf7-response-output"); 75 errorMessage.className += " wpcf7-validation-errors"; 76 errorMessage.style.display = "block"; 77 errorMessage.textContent = "Please complete the I am human box"; 78 errorMessage.setAttribute("aria-hidden", "false"); 75 79 return false; 76 80 } 81 var removeMessage = form.querySelector(".wpcf7-response-output"); 82 removeMessage.classList.remove("wpcf7-validation-errors"); 83 removeMessage.style = ""; 84 removeMessage.textContent = ""; 77 85 }); 78 86 }); -
adcaptcha/tags/1.1.3/src/Settings/Settings.php
r3077129 r3077493 71 71 72 72 public function change_admin_footer_version() { 73 return 'Version 1.1. 2';73 return 'Version 1.1.3'; 74 74 } 75 75 } -
adcaptcha/trunk/adcaptcha.php
r3077129 r3077493 3 3 * Plugin Name: adCAPTCHA for WordPress 4 4 * Description: Secure your site. Elevate your brand. Boost Ad Revenue. 5 * Version: 1.1. 25 * Version: 1.1.3 6 6 * Requires at least: 6.4.2 7 7 * Requires PHP: 7.4 -
adcaptcha/trunk/readme.txt
r3077129 r3077493 5 5 Requires at least: 6.0 6 6 Tested up to: 6.4 7 Stable tag: 1.1. 27 Stable tag: 1.1.3 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 98 98 = 1.1.2 = 99 99 - Minor patch: Fix to cf7 and hubspot with adCAPTCHA compatibility 100 101 = 1.1.3 = 102 - Minor patch: Fix to cf7 error message -
adcaptcha/trunk/src/Plugin/ContactForm7/Forms.php
r3077129 r3077493 71 71 submitButton.addEventListener("click", function(event) { 72 72 if (!window.adcap || !window.adcap.successToken) { 73 console.log(window.adcap.successToken);74 73 event.preventDefault(); 74 var errorMessage = form.querySelector(".wpcf7-response-output"); 75 errorMessage.className += " wpcf7-validation-errors"; 76 errorMessage.style.display = "block"; 77 errorMessage.textContent = "Please complete the I am human box"; 78 errorMessage.setAttribute("aria-hidden", "false"); 75 79 return false; 76 80 } 81 var removeMessage = form.querySelector(".wpcf7-response-output"); 82 removeMessage.classList.remove("wpcf7-validation-errors"); 83 removeMessage.style = ""; 84 removeMessage.textContent = ""; 77 85 }); 78 86 }); -
adcaptcha/trunk/src/Settings/Settings.php
r3077129 r3077493 71 71 72 72 public function change_admin_footer_version() { 73 return 'Version 1.1. 2';73 return 'Version 1.1.3'; 74 74 } 75 75 }
Note: See TracChangeset
for help on using the changeset viewer.