Changeset 3189493
- Timestamp:
- 11/15/2024 11:32:00 AM (16 months ago)
- Location:
- checkview
- Files:
-
- 8 edited
- 1 copied
-
tags/2.0.3 (copied) (copied from checkview/trunk)
-
tags/2.0.3/README.txt (modified) (3 diffs)
-
tags/2.0.3/checkview.php (modified) (2 diffs)
-
tags/2.0.3/includes/class-checkview.php (modified) (2 diffs)
-
tags/2.0.3/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/checkview.php (modified) (2 diffs)
-
trunk/includes/class-checkview.php (modified) (2 diffs)
-
trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkview/tags/2.0.3/README.txt
r3189478 r3189493 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0. 210 Stable tag: 2.0.3 11 11 12 12 [CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. … … 86 86 87 87 == Changelog == 88 = 2.0.3 = 89 * Added upgrade.php dependencies in upgrader hook. 90 * Updated CF7 hooks priority. 91 88 92 = 2.0.2 = 89 93 * Resolved updater hook bug by adding global $wpdb variable. … … 265 269 266 270 == Upgrade Notice == 271 = 2.0.3 = 272 * Added upgrade.php dependencies in upgrader hook. 273 * Updated CF7 hooks priority. 267 274 268 275 = 2.0.2 = -
checkview/tags/2.0.3/checkview.php
r3189478 r3189493 16 16 * Plugin URI: https://checkview.io 17 17 * 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. 218 * Version: 2.0.3 19 19 * Author: CheckView 20 20 * Author URI: https://checkview.io/ … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define( 'CHECKVIEW_VERSION', '2.0. 2' );39 define( 'CHECKVIEW_VERSION', '2.0.3' ); 40 40 41 41 /** -
checkview/tags/2.0.3/includes/class-checkview.php
r3189478 r3189493 80 80 $this->version = CHECKVIEW_VERSION; 81 81 } else { 82 $this->version = '2.0. 2';82 $this->version = '2.0.3'; 83 83 } 84 84 $this->plugin_name = 'checkview'; … … 433 433 // Your action if it is your plugin. 434 434 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 } 435 439 $cv_used_nonces = $wpdb->prefix . 'cv_used_nonces'; 436 440 437 441 $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 ) { 439 443 $sql = "CREATE TABLE $cv_used_nonces ( 440 444 id BIGINT(20) NOT NULL AUTO_INCREMENT, -
checkview/tags/2.0.3/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3189478 r3189493 70 70 : array( 71 71 'dependencies' => array(), 72 'version' => '2.0. 2',72 'version' => '2.0.3', 73 73 ); 74 74 $script_url = CHECKVIEW_URI . $script_path; -
checkview/trunk/README.txt
r3189478 r3189493 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html 10 Stable tag: 2.0. 210 Stable tag: 2.0.3 11 11 12 12 [CheckView](https://checkview.io/) is the friendly WordPress automated testing platform for everyone, from developers, shop owners to agencies. … … 86 86 87 87 == Changelog == 88 = 2.0.3 = 89 * Added upgrade.php dependencies in upgrader hook. 90 * Updated CF7 hooks priority. 91 88 92 = 2.0.2 = 89 93 * Resolved updater hook bug by adding global $wpdb variable. … … 265 269 266 270 == Upgrade Notice == 271 = 2.0.3 = 272 * Added upgrade.php dependencies in upgrader hook. 273 * Updated CF7 hooks priority. 267 274 268 275 = 2.0.2 = -
checkview/trunk/checkview.php
r3189478 r3189493 16 16 * Plugin URI: https://checkview.io 17 17 * 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. 218 * Version: 2.0.3 19 19 * Author: CheckView 20 20 * Author URI: https://checkview.io/ … … 37 37 * Rename this for your plugin and update it as you release new versions. 38 38 */ 39 define( 'CHECKVIEW_VERSION', '2.0. 2' );39 define( 'CHECKVIEW_VERSION', '2.0.3' ); 40 40 41 41 /** -
checkview/trunk/includes/class-checkview.php
r3189478 r3189493 80 80 $this->version = CHECKVIEW_VERSION; 81 81 } else { 82 $this->version = '2.0. 2';82 $this->version = '2.0.3'; 83 83 } 84 84 $this->plugin_name = 'checkview'; … … 433 433 // Your action if it is your plugin. 434 434 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 } 435 439 $cv_used_nonces = $wpdb->prefix . 'cv_used_nonces'; 436 440 437 441 $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 ) { 439 443 $sql = "CREATE TABLE $cv_used_nonces ( 440 444 id BIGINT(20) NOT NULL AUTO_INCREMENT, -
checkview/trunk/includes/woocommercehelper/class-checkview-blocks-payment-gateway.php
r3189478 r3189493 70 70 : array( 71 71 'dependencies' => array(), 72 'version' => '2.0. 2',72 'version' => '2.0.3', 73 73 ); 74 74 $script_url = CHECKVIEW_URI . $script_path;
Note: See TracChangeset
for help on using the changeset viewer.