From ff06b587c6b136fd7879f87652f845a3a16c3145 Mon Sep 17 00:00:00 2001 From: LDAV Date: Mon, 1 Jul 2024 16:02:02 +0200 Subject: [PATCH] Change string interpolation in SP.php '${} string interpolation' is deprecated since PHP 8.2 --- .../simplesamlphp/modules/saml/lib/Auth/Source/SP.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/simplesamlphp/simplesamlphp/modules/saml/lib/Auth/Source/SP.php b/setup/simplesamlphp/simplesamlphp/modules/saml/lib/Auth/Source/SP.php index 8edc176..33e9025 100644 --- a/setup/simplesamlphp/simplesamlphp/modules/saml/lib/Auth/Source/SP.php +++ b/setup/simplesamlphp/simplesamlphp/modules/saml/lib/Auth/Source/SP.php @@ -933,8 +933,8 @@ public function reauthenticate(array &$state) * cancel the current SSO attempt. */ Logger::warning( - "Reauthentication after logout is needed. The IdP '${state['saml:sp:IdP']}' is not in the IDPList " . - "provided by the Service Provider '${state['core:SP']}'." + "Reauthentication after logout is needed. The IdP '{$state['saml:sp:IdP']}' is not in the IDPList " . + "provided by the Service Provider '{$state['core:SP']}'." ); $state['saml:sp:IdPMetadata'] = $this->getIdPMetadata($state['saml:sp:IdP']);