Plugin Directory

Changeset 2709496


Ignore:
Timestamp:
04/14/2022 03:27:23 AM (4 years ago)
Author:
kanakogi
Message:

1.1.1

Location:
recaptcha-for-mw-wp-form
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • recaptcha-for-mw-wp-form/tags/1.1.1/controllers/EnqueueController.php

    r2325489 r2709496  
    1818        $option = get_option(Config::OPTION);
    1919        $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)) {
    2121            wp_enqueue_script('jquery');
    2222            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  
    44Tags: : form, mail, MW WP Form, reCAPTCHA
    55Requires at least: 4.0 or higher
    6 Tested up to: 5.8.3
    7 Stable tag: 1.1.0
     6Tested up to: 5.9.3
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525
    2626== Changelog ==
     27**1.1.1 - 14 Apr 2022**
     28Add null check for $post variable to eliminate warning message on 404 pages.
     29Thanks miurakazunori.
     30
    2731**1.1.0 - 19 Jan 2022**
    2832Update for threshold score.
  • recaptcha-for-mw-wp-form/tags/1.1.1/recaptcha-for-mw-wp-form.php

    r2659737 r2709496  
    44Description: You can use reCAPTCHA v3 on the MW WP Form.
    55Author: Nakashima Masahiro
    6 Version: 1.1.0
     6Version: 1.1.1
    77Plugin URI: https://github.com/kanakogi/recaptcha-for-mw-wp-form
    88License: GPLv2 or later
  • recaptcha-for-mw-wp-form/trunk/controllers/EnqueueController.php

    r2325489 r2709496  
    1818        $option = get_option(Config::OPTION);
    1919        $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)) {
    2121            wp_enqueue_script('jquery');
    2222            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  
    44Tags: : form, mail, MW WP Form, reCAPTCHA
    55Requires at least: 4.0 or higher
    6 Tested up to: 5.8.3
    7 Stable tag: 1.1.0
     6Tested up to: 5.9.3
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525
    2626== Changelog ==
     27**1.1.1 - 14 Apr 2022**
     28Add null check for $post variable to eliminate warning message on 404 pages.
     29Thanks miurakazunori.
     30
    2731**1.1.0 - 19 Jan 2022**
    2832Update for threshold score.
  • recaptcha-for-mw-wp-form/trunk/recaptcha-for-mw-wp-form.php

    r2659737 r2709496  
    44Description: You can use reCAPTCHA v3 on the MW WP Form.
    55Author: Nakashima Masahiro
    6 Version: 1.1.0
     6Version: 1.1.1
    77Plugin URI: https://github.com/kanakogi/recaptcha-for-mw-wp-form
    88License: GPLv2 or later
Note: See TracChangeset for help on using the changeset viewer.