Changeset 2871871
- Timestamp:
- 02/27/2023 06:01:04 PM (3 years ago)
- Location:
- impact-partnership-cloud
- Files:
-
- 3 edited
- 7 copied
-
tags/1.0.20 (copied) (copied from impact-partnership-cloud/trunk)
-
tags/1.0.20/changelog.txt (copied) (copied from impact-partnership-cloud/trunk/changelog.txt) (1 diff)
-
tags/1.0.20/css/stylesheets (copied) (copied from impact-partnership-cloud/trunk/css/stylesheets)
-
tags/1.0.20/images (copied) (copied from impact-partnership-cloud/trunk/images)
-
tags/1.0.20/impact.php (copied) (copied from impact-partnership-cloud/trunk/impact.php) (3 diffs)
-
tags/1.0.20/includes/impact_settings_page.php (copied) (copied from impact-partnership-cloud/trunk/includes/impact_settings_page.php)
-
tags/1.0.20/readme.txt (copied) (copied from impact-partnership-cloud/trunk/readme.txt) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/impact.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
impact-partnership-cloud/tags/1.0.20/changelog.txt
r2819305 r2871871 1 1 *** Impact Partnership Cloud *** 2 3 2023-02-27 - version 1.0.20 4 * Tweak - improvement on validation message when Impact credentials are not valid 2 5 3 6 2022-10-31 - version 1.0.19 -
impact-partnership-cloud/tags/1.0.20/impact.php
r2819305 r2871871 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0. 195 * Version: 1.0.20 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 … … 31 31 * @var string 32 32 */ 33 private $version = '1.0. 19';33 private $version = '1.0.20'; 34 34 /** 35 35 * Singleton instance of the plugin … … 595 595 ) 596 596 ); 597 597 598 // Check for wp_error here. 598 599 if ( ( $response instanceof WP_Error ) || ( 201 !== $response['response']['code'] ) ) { 599 add_settings_error( 600 'impact_settings_option_name', 601 'Authentication error', 602 "The store couldn't be authenticated by Saasler, please try again. ", 603 'error' 604 ); 600 if ( 422 === $response["response"]["code"] ) { 601 add_settings_error( 602 'impact_settings_option_name', 603 'Authentication error', 604 json_decode($response["body"])->error, 605 'error' 606 ); 607 } else { 608 add_settings_error( 609 'impact_settings_option_name', 610 'Authentication error', 611 "The store couldn't be authenticated by Saasler, please try again. ", 612 'error' 613 ); 614 } 605 615 } 606 616 -
impact-partnership-cloud/tags/1.0.20/readme.txt
r2819305 r2871871 4 4 Tested up to: 6.1 5 5 Requires PHP: 7.0 6 Stable tag: 1.0. 196 Stable tag: 1.0.20 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html -
impact-partnership-cloud/trunk/changelog.txt
r2819305 r2871871 1 1 *** Impact Partnership Cloud *** 2 3 2023-02-27 - version 1.0.20 4 * Tweak - improvement on validation message when Impact credentials are not valid 2 5 3 6 2022-10-31 - version 1.0.19 -
impact-partnership-cloud/trunk/impact.php
r2819305 r2871871 3 3 * Plugin Name: Impact: Partnership Cloud 4 4 * Description: Partnership cloud app plugin for Woocomerce that tracks every conversion made trough one of Impact's referral links. 5 * Version: 1.0. 195 * Version: 1.0.20 6 6 * Requires at least: 5.0 7 7 * Requires PHP: 7.0 … … 31 31 * @var string 32 32 */ 33 private $version = '1.0. 19';33 private $version = '1.0.20'; 34 34 /** 35 35 * Singleton instance of the plugin … … 595 595 ) 596 596 ); 597 597 598 // Check for wp_error here. 598 599 if ( ( $response instanceof WP_Error ) || ( 201 !== $response['response']['code'] ) ) { 599 add_settings_error( 600 'impact_settings_option_name', 601 'Authentication error', 602 "The store couldn't be authenticated by Saasler, please try again. ", 603 'error' 604 ); 600 if ( 422 === $response["response"]["code"] ) { 601 add_settings_error( 602 'impact_settings_option_name', 603 'Authentication error', 604 json_decode($response["body"])->error, 605 'error' 606 ); 607 } else { 608 add_settings_error( 609 'impact_settings_option_name', 610 'Authentication error', 611 "The store couldn't be authenticated by Saasler, please try again. ", 612 'error' 613 ); 614 } 605 615 } 606 616 -
impact-partnership-cloud/trunk/readme.txt
r2819305 r2871871 4 4 Tested up to: 6.1 5 5 Requires PHP: 7.0 6 Stable tag: 1.0. 196 Stable tag: 1.0.20 7 7 License: GPLv2 or later License 8 8 URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.