fix(admin): escape reflected request params in admin templates [#139] (#270)

This commit is contained in:
Ferywir
2026-06-23 16:37:11 +02:00
committed by GitHub
parent e17bb3dec6
commit 749a55aaf5
12 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ $_SESSION['mass_color'] = $_SESSION['mass_color'] ?? 'black';
<?php elseif(isset($_GET['sending'])):?>
<div style="text-align:center;padding:30px">
<div style="font-size:16px;margin-bottom:10px">Sending messages...</div>
<div style="color:#666"><?=$_GET['msg']?? ''?></div>
<div style="color:#666"><?=e($_GET['msg'] ?? '')?></div>
</div>
<?php else:?>