mirror of
https://github.com/fsr/eseeva
synced 2025-04-28 09:28:31 +02:00
fixes session handling error
Now the submissionId check gets evaluated even lazier.
This commit is contained in:
parent
7496fc263e
commit
56d882ca56
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@
|
|||
// if the submission ids of the post and the form don't match, the
|
||||
// user has refreshed the site and thus its reseted to the default state
|
||||
|
||||
if (isset($_SESSION["submissionId"]) && $_SESSION["submissionId"] == $_POST["submissionId"])
|
||||
if (isset($_SESSION["submissionId"]) && ($_SESSION["submissionId"] == $_POST["submissionId"]))
|
||||
{
|
||||
if (isset($_POST["changesConfirm"]))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue