Changeset 2709496
- Timestamp:
- 04/14/2022 03:27:23 AM (4 years ago)
- Location:
- recaptcha-for-mw-wp-form
- Files:
-
- 6 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from recaptcha-for-mw-wp-form/trunk)
-
tags/1.1.1/controllers/EnqueueController.php (modified) (1 diff)
-
tags/1.1.1/readme.txt (modified) (2 diffs)
-
tags/1.1.1/recaptcha-for-mw-wp-form.php (modified) (1 diff)
-
trunk/controllers/EnqueueController.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/recaptcha-for-mw-wp-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
recaptcha-for-mw-wp-form/tags/1.1.1/controllers/EnqueueController.php
r2325489 r2709496 18 18 $option = get_option(Config::OPTION); 19 19 $site_key = esc_html($option['site_key']); 20 if ( has_shortcode($post->post_content, 'mwform_formkey') && !empty($site_key)) {20 if (!empty($post) && has_shortcode($post->post_content, 'mwform_formkey') && !empty($site_key)) { 21 21 wp_enqueue_script('jquery'); 22 22 wp_enqueue_script("recaptcha-script", 'https://www.google.com/recaptcha/api.js?render=' . $site_key, array('jquery'), array(), true); -
recaptcha-for-mw-wp-form/tags/1.1.1/readme.txt
r2659737 r2709496 4 4 Tags: : form, mail, MW WP Form, reCAPTCHA 5 5 Requires at least: 4.0 or higher 6 Tested up to: 5. 8.37 Stable tag: 1.1. 06 Tested up to: 5.9.3 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 25 25 26 26 == Changelog == 27 **1.1.1 - 14 Apr 2022** 28 Add null check for $post variable to eliminate warning message on 404 pages. 29 Thanks miurakazunori. 30 27 31 **1.1.0 - 19 Jan 2022** 28 32 Update for threshold score. -
recaptcha-for-mw-wp-form/tags/1.1.1/recaptcha-for-mw-wp-form.php
r2659737 r2709496 4 4 Description: You can use reCAPTCHA v3 on the MW WP Form. 5 5 Author: Nakashima Masahiro 6 Version: 1.1. 06 Version: 1.1.1 7 7 Plugin URI: https://github.com/kanakogi/recaptcha-for-mw-wp-form 8 8 License: GPLv2 or later -
recaptcha-for-mw-wp-form/trunk/controllers/EnqueueController.php
r2325489 r2709496 18 18 $option = get_option(Config::OPTION); 19 19 $site_key = esc_html($option['site_key']); 20 if ( has_shortcode($post->post_content, 'mwform_formkey') && !empty($site_key)) {20 if (!empty($post) && has_shortcode($post->post_content, 'mwform_formkey') && !empty($site_key)) { 21 21 wp_enqueue_script('jquery'); 22 22 wp_enqueue_script("recaptcha-script", 'https://www.google.com/recaptcha/api.js?render=' . $site_key, array('jquery'), array(), true); -
recaptcha-for-mw-wp-form/trunk/readme.txt
r2659737 r2709496 4 4 Tags: : form, mail, MW WP Form, reCAPTCHA 5 5 Requires at least: 4.0 or higher 6 Tested up to: 5. 8.37 Stable tag: 1.1. 06 Tested up to: 5.9.3 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 25 25 26 26 == Changelog == 27 **1.1.1 - 14 Apr 2022** 28 Add null check for $post variable to eliminate warning message on 404 pages. 29 Thanks miurakazunori. 30 27 31 **1.1.0 - 19 Jan 2022** 28 32 Update for threshold score. -
recaptcha-for-mw-wp-form/trunk/recaptcha-for-mw-wp-form.php
r2659737 r2709496 4 4 Description: You can use reCAPTCHA v3 on the MW WP Form. 5 5 Author: Nakashima Masahiro 6 Version: 1.1. 06 Version: 1.1.1 7 7 Plugin URI: https://github.com/kanakogi/recaptcha-for-mw-wp-form 8 8 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.