Changeset 3186790
- Timestamp:
- 11/12/2024 11:13:33 PM (17 months ago)
- Location:
- wpcf7-recaptcha/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
recaptcha-v2.php (modified) (1 diff)
-
wpcf7-recaptcha.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpcf7-recaptcha/trunk/changelog.txt
r3091002 r3186790 2 2 3 3 This is to keep track of all changes the plugin undertakes. The readme.txt should only contain the most recent 3. 4 5 = 1.4.8 = 6 7 Release Date: November 13, 2024 8 9 * Overview 10 * Updated the "Tested up to" value to support 6.7+ 11 * Updates TagGenerator usage to v2 per Contact Form 7 updates. 12 13 * Code Changes 14 * Changes the iqfix_wpcf7_add_tag_generator_recaptcha() WPCF7_TagGenerator class to pass in `array( 'version' => 2 )` 15 which prevents deprecation errors from appearing. Not sure why but it's done! 4 16 5 17 = 1.4.7 = -
wpcf7-recaptcha/trunk/readme.txt
r3091002 r3186790 3 3 Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam 4 4 Requires at least: 4.9 5 Tested up to: 6. 56 Stable tag: 1.4. 75 Tested up to: 6.7 6 Stable tag: 1.4.8 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 61 61 == Changelog == 62 62 63 = 1.4.8 (2024-11-13) = 64 * Updated the "Tested up to" value to support 6.7+ 65 * Updates Contact Form 7 Tag Generator to v2 66 63 67 = 1.4.7 (2024-05-22) = 64 68 * Updated the "Tested up to" value to support 6.5+ … … 67 71 * Improved desription text ( Thanks @rickcurran ) 68 72 * Tested and updated to support WordPress 6.5 Regina 69 70 = 1.4.5 (2024-01-18) =71 * Tested and updated to support WordPress 6.4: Shirley -
wpcf7-recaptcha/trunk/recaptcha-v2.php
r2950942 r3186790 265 265 esc_html__( 'reCaptcha', 'wpcf7-recaptcha' ), 266 266 'iqfix_wpcf7_tag_generator_recaptcha', 267 array( ' nameless' => 1)267 array( 'version' => 2 ) 268 268 ); 269 269 -
wpcf7-recaptcha/trunk/wpcf7-recaptcha.php
r3091002 r3186790 3 3 * Plugin Name: ReCaptcha v2 for Contact Form 7 4 4 * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later. 5 * Version: 1.4. 75 * Version: 1.4.8 6 6 * Author: IQComputing 7 7 * Author URI: http://www.iqcomputing.com/ … … 25 25 * @var String 26 26 */ 27 public static $version = '1.4. 7';27 public static $version = '1.4.8'; 28 28 29 29
Note: See TracChangeset
for help on using the changeset viewer.