Plugin Directory

Changeset 3068154

Timestamp:
04/10/2024 04:26:04 AM (4 months ago)
Author:
jrtashjian
Message:

Update to version 1.2.1 from GitHub

Location:
omniform
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • omniform/tags/1.2.1/changelog.txt

    r3068146 r3068154  
     1
     2
     3
     4
     5
     6
     7
    18
    291.2.0 / 2024-04-09
  • omniform/tags/1.2.1/includes/Application.php

    r3068146 r3068154  
    2727     * @var string
    2828     */
    29     const VERSION = '1.2.0';
     29    const VERSION = '1.2.';
    3030
    3131    /**
  • omniform/tags/1.2.1/includes/BlockLibrary/Blocks/Form.php

    r3068146 r3068154  
    6868
    6969        // Add a default success response notification block if one is not present.
    70         if ( false === preg_match( '/success-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
     70        if ( preg_match( '/success-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
    7171            array_unshift(
    7272                $content,
     
    100100
    101101        // Add a default error response notification block if one is not present.
    102         if ( false === preg_match( '/error-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
     102        if ( preg_match( '/error-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
    103103            array_unshift(
    104104                $content,
  • omniform/tags/1.2.1/includes/Plugin/PluginServiceProvider.php

    r3068146 r3068154  
    6363                wp_mail(
    6464                    empty( $notify_email )
    65                         ? esc_attr( get_option( 'admin_email' ) )
    66                         : esc_attr( $notify_email ),
     65                        ? )
     66                        : ,
    6767                    empty( $notify_email_subject )
    6868                        // translators: %1$s represents the blog name, %2$s represents the form title.
  • omniform/tags/1.2.1/omniform.php

    r3068146 r3068154  
    44 * Plugin URI: https://omniform.io
    55 * Description: Easily create and manage custom forms with the block editor, customizable fields, and form submission management for your website.
    6  * Version: 1.2.0
     6 * Version: 1.2.
    77 * Requires at least: 6.3
    88 * Requires PHP: 7.4
  • omniform/tags/1.2.1/readme.txt

    r3068146 r3068154  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 1.2.0
     7Stable tag: 1.2.
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8383== Changelog ==
    8484
     85
     86
     87
     88
     89
    8590= 1.2.0 / 2024-04-09 =
    8691
  • omniform/trunk/changelog.txt

    r3068146 r3068154  
     1
     2
     3
     4
     5
     6
     7
    18
    291.2.0 / 2024-04-09
  • omniform/trunk/includes/Application.php

    r3068146 r3068154  
    2727     * @var string
    2828     */
    29     const VERSION = '1.2.0';
     29    const VERSION = '1.2.';
    3030
    3131    /**
  • omniform/trunk/includes/BlockLibrary/Blocks/Form.php

    r3068146 r3068154  
    6868
    6969        // Add a default success response notification block if one is not present.
    70         if ( false === preg_match( '/success-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
     70        if ( preg_match( '/success-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
    7171            array_unshift(
    7272                $content,
     
    100100
    101101        // Add a default error response notification block if one is not present.
    102         if ( false === preg_match( '/error-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
     102        if ( preg_match( '/error-response-notification[^"]+?wp-block-omniform-response-notification/', $content[0] ) ) {
    103103            array_unshift(
    104104                $content,
  • omniform/trunk/includes/Plugin/PluginServiceProvider.php

    r3068146 r3068154  
    6363                wp_mail(
    6464                    empty( $notify_email )
    65                         ? esc_attr( get_option( 'admin_email' ) )
    66                         : esc_attr( $notify_email ),
     65                        ? )
     66                        : ,
    6767                    empty( $notify_email_subject )
    6868                        // translators: %1$s represents the blog name, %2$s represents the form title.
  • omniform/trunk/omniform.php

    r3068146 r3068154  
    44 * Plugin URI: https://omniform.io
    55 * Description: Easily create and manage custom forms with the block editor, customizable fields, and form submission management for your website.
    6  * Version: 1.2.0
     6 * Version: 1.2.
    77 * Requires at least: 6.3
    88 * Requires PHP: 7.4
  • omniform/trunk/readme.txt

    r3068146 r3068154  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 1.2.0
     7Stable tag: 1.2.
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    8383== Changelog ==
    8484
     85
     86
     87
     88
     89
    8590= 1.2.0 / 2024-04-09 =
    8691
Note: See TracChangeset for help on using the changeset viewer.