From d6bfbbcd30d80b46b7a0ae3d3b3d28992104302c Mon Sep 17 00:00:00 2001 From: Stephen Abello Date: Fri, 21 Jun 2019 11:08:23 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B01529:=20Allow=20parameter=20OpenSSLMcryp?= =?UTF-8?q?tCompatibility=20to=20be=20used?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/simplecrypt.class.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/simplecrypt.class.inc.php b/core/simplecrypt.class.inc.php index 51f2bc0e6..e597700cb 100644 --- a/core/simplecrypt.class.inc.php +++ b/core/simplecrypt.class.inc.php @@ -88,7 +88,8 @@ class SimpleCrypt } break; case 'OpenSSL': - if(!function_exists('openssl_decrypt')){ + case 'OpenSSLMcryptCompatibility': + if(!function_exists('openssl_decrypt')){ $sEngineName = 'Simple'; } break;