Skip to content

Commit

Permalink
SuiteCRM 8.2.3 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jack7anderson7 committed Jan 25, 2023
1 parent a257e62 commit 0a59f6d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img width="180px" height="41px" src="https://suitecrm.com/wp-content/uploads/2017/12/logo.png" align="right" />
</a>

# SuiteCRM 8.2.2
# SuiteCRM 8.2.3

[![LICENSE](https://img.shields.io/github/license/suitecrm/suitecrm.svg)](https://github.com/salesagility/suitecrm/blob/hotfix/LICENSE.txt)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/salesagility/SuiteCRM-Core/issues)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.2
8.2.3
2 changes: 1 addition & 1 deletion core/app/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "common",
"version": "8.2.2",
"version": "8.2.3",
"peerDependencies": {
"@angular/common": "^12.1.0",
"@angular/core": "^12.1.0",
Expand Down
2 changes: 1 addition & 1 deletion core/app/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "core",
"version": "8.2.2",
"version": "8.2.3",
"peerDependencies": {
"@angular/common": "^12.1.0",
"@angular/core": "^12.1.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "suitecrm",
"version": "8.2.2",
"version": "8.2.3",
"scripts": {
"ng": "ng",
"start": "npm run start:shell",
Expand Down
9 changes: 7 additions & 2 deletions public/legacy/deprecated.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@
];

foreach ($saml2_class_names as $name) {
class_alias("OneLogin\\Saml2\\" . $name, 'OneLogin_Saml2_' . $name);
if (!class_exists('OneLogin_Saml2_' . $name)) {
class_alias("OneLogin\\Saml2\\" . $name, 'OneLogin_Saml2_' . $name);
}
}

if (!class_exists(OneLogin_Saml2_Auth::class)) {
Expand Down Expand Up @@ -52,7 +54,10 @@ class OneLogin_Saml2_Utils {}
/**
* Backwards compatibility for Zend
*/
class_alias('SuiteCRM\\Zend_Oauth_Provider', 'Zend\\Oauth\\Provider');

if (!class_exists('Zend\\Oauth\\Provider')){
class_alias('SuiteCRM\\Zend_Oauth_Provider', 'Zend\\Oauth\\Provider');
}

if (!class_exists(Provider::class)) {
/** @deprecated this is an alias for Zend_Oauth_Provider */
Expand Down

0 comments on commit 0a59f6d

Please sign in to comment.