From 41386f8cca055f0d33e9876c3977e2cdc41caf75 Mon Sep 17 00:00:00 2001 From: William Desportes Date: Wed, 25 Aug 2021 02:16:41 +0200 Subject: [PATCH] Fix class name after #14321 Signed-off-by: William Desportes --- libraries/classes/Plugins/Auth/AuthenticationSignon.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/classes/Plugins/Auth/AuthenticationSignon.php b/libraries/classes/Plugins/Auth/AuthenticationSignon.php index 68ab4601c1..85e3e640d5 100644 --- a/libraries/classes/Plugins/Auth/AuthenticationSignon.php +++ b/libraries/classes/Plugins/Auth/AuthenticationSignon.php @@ -9,7 +9,7 @@ namespace PhpMyAdmin\Plugins\Auth; use PhpMyAdmin\Core; use PhpMyAdmin\Plugins\AuthenticationPlugin; -use PhpMyAdmin\Response; +use PhpMyAdmin\ResponseRenderer; use PhpMyAdmin\Util; use function __; @@ -39,7 +39,7 @@ class AuthenticationSignon extends AuthenticationPlugin */ public function showLoginForm() { - Response::getInstance()->disable(); + ResponseRenderer::getInstance()->disable(); unset($_SESSION['LAST_SIGNON_URL']); if (empty($GLOBALS['cfg']['Server']['SignonURL'])) { Core::fatalError('You must set SignonURL!');