mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
remove id attribute from csrf token field due to obsolescence
and if there's multiple form's on the page it would lead to multiple elements with the same id which is illegal in html
This commit is contained in:
parent
f36b08c10a
commit
8f3489cd4a
@ -70,7 +70,7 @@ function ensureCSRFSessionToken()
|
|||||||
function CSRFTokenFieldTag()
|
function CSRFTokenFieldTag()
|
||||||
{
|
{
|
||||||
$token = htmlspecialchars($_SESSION['csrf_token']);
|
$token = htmlspecialchars($_SESSION['csrf_token']);
|
||||||
return '<input id="csrf_token" type="hidden" name="csrf_token" value="' . $token . '">';
|
return '<input type="hidden" name="csrf_token" value="' . $token . '">';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user