Use new line for unsetting variable

This commit is contained in:
Joshua Ramon Enslin 2021-02-06 17:35:11 +01:00
parent 7a252c6bfa
commit 605fd88b6e
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -38,7 +38,8 @@ final class MD_STD_SEC {
) {
$validity = true;
}
$_SESSION['csrf-token'] = null; unset($_SESSION['csrf-token']);
$_SESSION['csrf-token'] = null;
unset($_SESSION['csrf-token']);
return $validity;