Every time I set up a firewall I get a PHP error

Hello, I already asked this question once, but I didn’t find an answer, every time I do something in the firewall, I get an error in the logs of the called function. Perhaps someone will say whether it is possible to fix it somehow, or just be measured and do not pay attention?)
Nginx+PHP8.4+MariaDB+Redis+mail

2025/07/10 15:47:37 [error] 593#0: *52 FastCGI sent in stderr: "PHP message: PHP Notice:  session_start(): Ignoring session_start() because a session is already active (started from /usr/local/hestia/web/suspend/firewall/index.php on line 6) in /usr/local/hestia/web/inc/main.php on line 2" while reading response header from upstream, client: 213.108.6.232, server: _, request: "GET /suspend/firewall/?rule=21&token=29c5072ad60280bbc083ca75e38afb00 HTTP/2.0", upstream: "fastcgi://unix:/run/hestia-php.sock:", host: "hestia.angellive.ru:2083", referrer: "https://hestia.angellive.ru:2083/list/firewall/"
2025/07/10 15:48:13 [error] 593#0: *52 FastCGI sent in stderr: "PHP message: PHP Notice:  session_start(): Ignoring session_start() because a session is already active (started from /usr/local/hestia/web/suspend/firewall/index.php on line 6) in /usr/local/hestia/web/inc/main.php on line 2" while reading response header from upstream, client: 213.108.6.232, server: _, request: "GET /suspend/firewall/?rule=22&token=29c5072ad60280bbc083ca75e38afb00 HTTP/2.0", upstream: "fastcgi://unix:/run/hestia-php.sock:", host: "hestia.angellive.ru:2083", referrer: "https://hestia.angellive.ru:2083/list/firewall/"
2025/07/10 16:21:03 [error] 593#0: *70 FastCGI sent in stderr: "PHP message: PHP Notice:  session_start(): Ignoring session_start() because a session is already active (started from /usr/local/hestia/web/suspend/firewall/index.php on line 6) in /usr/local/hestia/web/inc/main.php on line 2" while reading response header from upstream, client: 213.108.6.232, server: _, request: "GET /suspend/firewall/?rule=21&token=29c5072ad60280bbc083ca75e38afb00 HTTP/2.0", upstream: "fastcgi://unix:/run/hestia-php.sock:", host: "hestia.angellive.ru:2083", referrer: "https://hestia.angellive.ru:2083/list/firewall/"

the same

Quick Fix. You will loose it when hestia updates.

Edit the firewall suspend file to check if session is already active:

sudo nano /usr/local/hestia/web/suspend/firewall/index.php

Find line 6 and replace:

session_start();

With:

if (session_status() == PHP_SESSION_NONE) {
    session_start();
}