Skip to content

Commit

Permalink
Lastest Cafe changs 5.0.14.p
Browse files Browse the repository at this point in the history
  • Loading branch information
Pebblo committed Jan 17, 2024
1 parent f3e0313 commit 7c0d391
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Releases

### [5.0.14]

#### Fixed
- [Fix paypal exception causing fatal on PHP7.4 (#1071)](https://github.com/eventespresso/cafe/pull/1071)

### [5.0.13]

#### Fixed
Expand Down Expand Up @@ -36,6 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Dont Use Links to Close Notices (#1036)](https://github.com/eventespresso/cafe/pull/1036)
- [PPC. Fix not ACDC eligible behaviour (#1040)](https://github.com/eventespresso/cafe/pull/1040)
- [Protect Ticket Assignments Manager Layout from Other Plugin CSS (#1065)](https://github.com/eventespresso/cafe/pull/1065)
- [BM Changes 5.0.13.p (#1067)](https://github.com/eventespresso/cafe/pull/1067)



### [5.0.12]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public static function decryptString(string $text, EE_Payment_Method $paypal_pm)
? PPCommerceEncryptionKeyManager::SANDBOX_ENCRYPTION_KEY_ID
: PPCommerceEncryptionKeyManager::PRODUCTION_ENCRYPTION_KEY_ID;
$decrypted = $encryptor->decrypt($text, $key_identifier);
} catch (Exception) {
} catch (Exception $e) {
return $text;
}
return $decrypted ?? $text;
Expand Down
4 changes: 2 additions & 2 deletions espresso.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name:Event Espresso
Plugin URI: https://eventespresso.com/pricing/?ee_ver=ee4&utm_source=ee4_plugin_admin&utm_medium=link&utm_campaign=wordpress_plugins_page&utm_content=support_link
Description: Manage events, sell tickets, and receive payments from your WordPress website. Reduce event administration time, cut-out ticketing fees, and own your customer data. | <a href="https://eventespresso.com/add-ons/?utm_source=plugin_activation_screen&utm_medium=link&utm_campaign=plugin_description">Extensions</a> | <a href="https://eventespresso.com/pricing/?utm_source=plugin_activation_screen&utm_medium=link&utm_campaign=plugin_description">Sales</a> | <a href="admin.php?page=espresso_support">Support</a>
Version: 5.0.14.rc.000
Version: 5.0.14.rc.002
Author: Event Espresso
Author URI: http://eventespresso.com/?ee_ver=ee4&utm_source=ee4_plugin_admin&utm_medium=link&utm_campaign=wordpress_plugins_page&utm_content=support_link
License: GPLv3
Expand Down Expand Up @@ -104,7 +104,7 @@ function espresso_minimum_php_version_error()
*/
function espresso_version(): string
{
return apply_filters('FHEE__espresso__espresso_version', '5.0.14.rc.000');
return apply_filters('FHEE__espresso__espresso_version', '5.0.14.rc.002');
}

/**
Expand Down

0 comments on commit 7c0d391

Please sign in to comment.