Plugin Directory

Changeset 3076499


Ignore:
Timestamp:
04/24/2024 01:45:50 PM (22 months ago)
Author:
adcaptcha
Message:

Update to version 1.1.1 from GitHub

Location:
adcaptcha
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • adcaptcha/tags/1.1.1/adcaptcha.php

    r3064464 r3076499  
    33 * Plugin Name: adCAPTCHA for WordPress
    44 * Description: Secure your site. Elevate your brand. Boost Ad Revenue.
    5  * Version: 1.1.0
     5 * Version: 1.1.1
    66 * Requires at least: 6.4.2
    77 * Requires PHP: 7.4
  • adcaptcha/tags/1.1.1/readme.txt

    r3064464 r3076499  
    55Requires at least: 6.0
    66Tested up to: 6.4
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    9292= 1.1.0 =
    9393- Feature: add plugin location selection in setting
     94
     95= 1.1.1 =
     96- Minor patch: Fixed ContactForm7 not showing captcha on custom submit button
  • adcaptcha/tags/1.1.1/src/Plugin/ContactForm7/Forms.php

    r3060548 r3076499  
    3939    public function captcha_trigger_filter(string $elements) {
    4040        return preg_replace(
    41             '/(<input.*?type="submit")/',
     41            '/(<(input|button).*?type=(["\']?)submit(["\']?))/',
    4242            AdCaptcha::ob_captcha_trigger() . '$1',
    4343            $elements
  • adcaptcha/tags/1.1.1/src/Settings/Settings.php

    r3064464 r3076499  
    7171
    7272    public function change_admin_footer_version() {
    73         return 'Version 1.1.0';
     73        return 'Version 1.1.1';
    7474    }
    7575}
  • adcaptcha/trunk/adcaptcha.php

    r3064464 r3076499  
    33 * Plugin Name: adCAPTCHA for WordPress
    44 * Description: Secure your site. Elevate your brand. Boost Ad Revenue.
    5  * Version: 1.1.0
     5 * Version: 1.1.1
    66 * Requires at least: 6.4.2
    77 * Requires PHP: 7.4
  • adcaptcha/trunk/readme.txt

    r3064464 r3076499  
    55Requires at least: 6.0
    66Tested up to: 6.4
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    9292= 1.1.0 =
    9393- Feature: add plugin location selection in setting
     94
     95= 1.1.1 =
     96- Minor patch: Fixed ContactForm7 not showing captcha on custom submit button
  • adcaptcha/trunk/src/Plugin/ContactForm7/Forms.php

    r3060548 r3076499  
    3939    public function captcha_trigger_filter(string $elements) {
    4040        return preg_replace(
    41             '/(<input.*?type="submit")/',
     41            '/(<(input|button).*?type=(["\']?)submit(["\']?))/',
    4242            AdCaptcha::ob_captcha_trigger() . '$1',
    4343            $elements
  • adcaptcha/trunk/src/Settings/Settings.php

    r3064464 r3076499  
    7171
    7272    public function change_admin_footer_version() {
    73         return 'Version 1.1.0';
     73        return 'Version 1.1.1';
    7474    }
    7575}
Note: See TracChangeset for help on using the changeset viewer.