From ff4e0ae3863c24a6455758f266777ffc5d7ef3fa Mon Sep 17 00:00:00 2001 From: Ilia Ross Date: Mon, 28 Apr 2025 03:33:52 +0300 Subject: [PATCH] Fix to split lines up https://github.com/webmin/webmin/pull/2462#pullrequestreview-2797791341 --- miniserv.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/miniserv.pl b/miniserv.pl index 6b72444ee..3cccffd57 100755 --- a/miniserv.pl +++ b/miniserv.pl @@ -4276,8 +4276,10 @@ if ($ok && (!$expired || # Log in creds were OK but two-factor auth is still pending if ($twof_probe) { # Two-factor auth is required - $validated=$already_session_id=$authuser=$baseauthuser = undef; - $querystring=$method=$page=$request_uri=$logged_code = undef; + $validated = $already_session_id = undef; + $authuser = $baseauthuser = undef; + $querystring = $method = $page = $request_uri = undef; + $logged_code = undef; $queryargs = ""; # Write response &http_error(401, "Two-factor authentication is required");