Plugin Directory

Changeset 3189493


Ignore:
Timestamp:
11/15/2024 11:32:00 AM (16 months ago)
Author:
checkview
Message:

Update to version 2.0.3 from GitHub

Location:
checkview
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • checkview/tags/2.0.3/README.txt

    r3189478 r3189493  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.2
     10Stable tag: 2.0.3
    1111
    1212[CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. 
     
    8686
    8787== Changelog ==
     88= 2.0.3 =
     89* Added upgrade.php dependencies in upgrader hook.
     90* Updated CF7 hooks priority.
     91
    8892= 2.0.2 =
    8993* Resolved updater hook bug by adding global $wpdb variable.
     
    265269
    266270== Upgrade Notice ==
     271= 2.0.3 =
     272* Added upgrade.php dependencies in upgrader hook.
     273* Updated CF7 hooks priority.
    267274
    268275= 2.0.2 =
  • checkview/tags/2.0.3/checkview.php

    r3189478 r3189493  
    1616 * Plugin URI:        https://checkview.io
    1717 * Description:       CheckView is the #1 fully automated solution to test your WordPress forms and detect form problems fast.  Automatically test your WordPress forms to ensure you never miss a lead again.
    18  * Version:           2.0.2
     18 * Version:           2.0.3
    1919 * Author:            CheckView
    2020 * Author URI:        https://checkview.io/
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define( 'CHECKVIEW_VERSION', '2.0.2' );
     39define( 'CHECKVIEW_VERSION', '2.0.3' );
    4040
    4141/**
  • checkview/tags/2.0.3/includes/class-checkview.php

    r3189478 r3189493  
    8080            $this->version = CHECKVIEW_VERSION;
    8181        } else {
    82             $this->version = '2.0.2';
     82            $this->version = '2.0.3';
    8383        }
    8484        $this->plugin_name = 'checkview';
     
    433433                    // Your action if it is your plugin.
    434434                    checkview_reset_cache( true );
     435                    // Include upgrade.php for dbDelta.
     436                    if ( ! function_exists( 'dbDelta' ) ) {
     437                        require_once ABSPATH . 'wp-admin/includes/upgrade.php';
     438                    }
    435439                    $cv_used_nonces = $wpdb->prefix . 'cv_used_nonces';
    436440
    437441                    $charset_collate = $wpdb->get_charset_collate();
    438                     if ( $wpdb->get_var( $wpdb->prepare( 'show tables like %s', $cv_used_nonces ) ) !== $cv_used_nonces ) {
     442                    if ( $wpdb->get_var( "SHOW TABLES LIKE '{$cv_used_nonces}'" ) !== $cv_used_nonces ) {
    439443                        $sql = "CREATE TABLE $cv_used_nonces (
    440444                                id BIGINT(20) NOT NULL AUTO_INCREMENT,
  • checkview/tags/2.0.3/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3189478 r3189493  
    7070            : array(
    7171                'dependencies' => array(),
    72                 'version'      => '2.0.2',
     72                'version'      => '2.0.3',
    7373            );
    7474        $script_url        = CHECKVIEW_URI . $script_path;
  • checkview/trunk/README.txt

    r3189478 r3189493  
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
    10 Stable tag: 2.0.2
     10Stable tag: 2.0.3
    1111
    1212[CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. 
     
    8686
    8787== Changelog ==
     88= 2.0.3 =
     89* Added upgrade.php dependencies in upgrader hook.
     90* Updated CF7 hooks priority.
     91
    8892= 2.0.2 =
    8993* Resolved updater hook bug by adding global $wpdb variable.
     
    265269
    266270== Upgrade Notice ==
     271= 2.0.3 =
     272* Added upgrade.php dependencies in upgrader hook.
     273* Updated CF7 hooks priority.
    267274
    268275= 2.0.2 =
  • checkview/trunk/checkview.php

    r3189478 r3189493  
    1616 * Plugin URI:        https://checkview.io
    1717 * Description:       CheckView is the #1 fully automated solution to test your WordPress forms and detect form problems fast.  Automatically test your WordPress forms to ensure you never miss a lead again.
    18  * Version:           2.0.2
     18 * Version:           2.0.3
    1919 * Author:            CheckView
    2020 * Author URI:        https://checkview.io/
     
    3737 * Rename this for your plugin and update it as you release new versions.
    3838 */
    39 define( 'CHECKVIEW_VERSION', '2.0.2' );
     39define( 'CHECKVIEW_VERSION', '2.0.3' );
    4040
    4141/**
  • checkview/trunk/includes/class-checkview.php

    r3189478 r3189493  
    8080            $this->version = CHECKVIEW_VERSION;
    8181        } else {
    82             $this->version = '2.0.2';
     82            $this->version = '2.0.3';
    8383        }
    8484        $this->plugin_name = 'checkview';
     
    433433                    // Your action if it is your plugin.
    434434                    checkview_reset_cache( true );
     435                    // Include upgrade.php for dbDelta.
     436                    if ( ! function_exists( 'dbDelta' ) ) {
     437                        require_once ABSPATH . 'wp-admin/includes/upgrade.php';
     438                    }
    435439                    $cv_used_nonces = $wpdb->prefix . 'cv_used_nonces';
    436440
    437441                    $charset_collate = $wpdb->get_charset_collate();
    438                     if ( $wpdb->get_var( $wpdb->prepare( 'show tables like %s', $cv_used_nonces ) ) !== $cv_used_nonces ) {
     442                    if ( $wpdb->get_var( "SHOW TABLES LIKE '{$cv_used_nonces}'" ) !== $cv_used_nonces ) {
    439443                        $sql = "CREATE TABLE $cv_used_nonces (
    440444                                id BIGINT(20) NOT NULL AUTO_INCREMENT,
  • checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php

    r3189478 r3189493  
    7070            : array(
    7171                'dependencies' => array(),
    72                 'version'      => '2.0.2',
     72                'version'      => '2.0.3',
    7373            );
    7474        $script_url        = CHECKVIEW_URI . $script_path;
Note: See TracChangeset for help on using the changeset viewer.