mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-21 16:13:00 +00:00
feature-watchlist: Fix Potential XSS in do GET parameter
This commit is contained in:
parent
96546184dc
commit
dfe76d1d9b
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ register_module([
|
|||
global $settings, $env, $pageindex;
|
||||
|
||||
// The thing we should do.
|
||||
$do = $_GET["do"] ?? "null";
|
||||
$do = slugify($_GET["do"] ?? "null");
|
||||
// The location we should redirect to after doing it successfully, if anywhere
|
||||
$returnto = empty($_GET["returnto"]) ? null : $_GET["returnto"];
|
||||
|
||||
|
|
Loading…
Reference in a new issue