Changeset 3010934
- Timestamp:
- 12/17/2023 07:39:52 AM (2 years ago)
- Location:
- thrivedesk
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.4 (copied) (copied from thrivedesk/trunk)
-
tags/1.1.4/readme.txt (modified) (2 diffs)
-
tags/1.1.4/src/Api.php (modified) (1 diff)
-
tags/1.1.4/src/Plugins/EDD.php (modified) (1 diff)
-
tags/1.1.4/thrivedesk.php (modified) (2 diffs)
-
tags/1.1.4/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/Api.php (modified) (1 diff)
-
trunk/src/Plugins/EDD.php (modified) (1 diff)
-
trunk/thrivedesk.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
thrivedesk/tags/1.1.4/readme.txt
r3001974 r3010934 4 4 Requires at least: 4.9 5 5 Tested up to: 6.3.1 6 Stable Tag: 1.1. 36 Stable Tag: 1.1.4 7 7 Requires PHP: 5.5 8 8 License: GNU General Public License v2.0 or later … … 225 225 == Changelog == 226 226 227 = 1.1.4 = 228 - Fix: EDD order overview issue resolved. 229 - Update: WooCommerce shipping details checkbox warning handled. 230 227 231 = 1.1.3 = 228 232 - Fix: Portal access issue resolved. -
thrivedesk/tags/1.1.4/src/Api.php
r2962781 r3010934 426 426 427 427 $email = sanitize_email( $_REQUEST['email'] ?? '' ); 428 $enableShipping = $_REQUEST['shipping_param']== 1 ? true : false;428 $enableShipping = isset($_REQUEST['shipping_param']) == 1 ? true : false; 429 429 430 430 if ( ! method_exists( $this->plugin, 'prepare_data' ) ) { -
thrivedesk/tags/1.1.4/src/Plugins/EDD.php
r2839767 r3010934 84 84 */ 85 85 public function accepted_statuses(): array { 86 return ['Complete '];86 return ['Completed']; 87 87 } 88 88 -
thrivedesk/tags/1.1.4/thrivedesk.php
r3001974 r3010934 6 6 * Plugin URI: https://www.thrivedesk.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 7 * Tags: live chat, helpdesk, free live chat, knowledge base, thrivedesk 8 * Version: 1.1. 38 * Version: 1.1.4 9 9 * Author: ThriveDesk 10 10 * Author URI: https://profiles.wordpress.org/thrivedesk/ … … 51 51 * @var string 52 52 */ 53 public $version = '1.1. 3';53 public $version = '1.1.4'; 54 54 55 55 /** -
thrivedesk/tags/1.1.4/vendor/composer/installed.php
r3001974 r3010934 2 2 'root' => array( 3 3 'name' => 'thrivedesk/wp-plugin', 4 'pretty_version' => 'v1.1. 3',5 'version' => '1.1. 3.0',6 'reference' => ' bcab3170076b73987bc43327ab7bff7c0ee3ec2b',4 'pretty_version' => 'v1.1.4', 5 'version' => '1.1.4.0', 6 'reference' => 'dc49dfc05e5694e41f0c143b80cc0b8e53d83921', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'thrivedesk/wp-plugin' => array( 14 'pretty_version' => 'v1.1. 3',15 'version' => '1.1. 3.0',16 'reference' => ' bcab3170076b73987bc43327ab7bff7c0ee3ec2b',14 'pretty_version' => 'v1.1.4', 15 'version' => '1.1.4.0', 16 'reference' => 'dc49dfc05e5694e41f0c143b80cc0b8e53d83921', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
thrivedesk/trunk/readme.txt
r3001974 r3010934 4 4 Requires at least: 4.9 5 5 Tested up to: 6.3.1 6 Stable Tag: 1.1. 36 Stable Tag: 1.1.4 7 7 Requires PHP: 5.5 8 8 License: GNU General Public License v2.0 or later … … 225 225 == Changelog == 226 226 227 = 1.1.4 = 228 - Fix: EDD order overview issue resolved. 229 - Update: WooCommerce shipping details checkbox warning handled. 230 227 231 = 1.1.3 = 228 232 - Fix: Portal access issue resolved. -
thrivedesk/trunk/src/Api.php
r2962781 r3010934 426 426 427 427 $email = sanitize_email( $_REQUEST['email'] ?? '' ); 428 $enableShipping = $_REQUEST['shipping_param']== 1 ? true : false;428 $enableShipping = isset($_REQUEST['shipping_param']) == 1 ? true : false; 429 429 430 430 if ( ! method_exists( $this->plugin, 'prepare_data' ) ) { -
thrivedesk/trunk/src/Plugins/EDD.php
r2839767 r3010934 84 84 */ 85 85 public function accepted_statuses(): array { 86 return ['Complete '];86 return ['Completed']; 87 87 } 88 88 -
thrivedesk/trunk/thrivedesk.php
r3001974 r3010934 6 6 * Plugin URI: https://www.thrivedesk.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash 7 7 * Tags: live chat, helpdesk, free live chat, knowledge base, thrivedesk 8 * Version: 1.1. 38 * Version: 1.1.4 9 9 * Author: ThriveDesk 10 10 * Author URI: https://profiles.wordpress.org/thrivedesk/ … … 51 51 * @var string 52 52 */ 53 public $version = '1.1. 3';53 public $version = '1.1.4'; 54 54 55 55 /** -
thrivedesk/trunk/vendor/composer/installed.php
r3001974 r3010934 2 2 'root' => array( 3 3 'name' => 'thrivedesk/wp-plugin', 4 'pretty_version' => 'v1.1. 3',5 'version' => '1.1. 3.0',6 'reference' => ' bcab3170076b73987bc43327ab7bff7c0ee3ec2b',4 'pretty_version' => 'v1.1.4', 5 'version' => '1.1.4.0', 6 'reference' => 'dc49dfc05e5694e41f0c143b80cc0b8e53d83921', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'thrivedesk/wp-plugin' => array( 14 'pretty_version' => 'v1.1. 3',15 'version' => '1.1. 3.0',16 'reference' => ' bcab3170076b73987bc43327ab7bff7c0ee3ec2b',14 'pretty_version' => 'v1.1.4', 15 'version' => '1.1.4.0', 16 'reference' => 'dc49dfc05e5694e41f0c143b80cc0b8e53d83921', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.