Fix wishlist hash missing
This commit is contained in:
parent
516c1a8374
commit
5240352909
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ if (isset($_POST['name'])) {
|
|||
) VALUES (
|
||||
' . $_SESSION['user']['id'] . ',
|
||||
"' . $_POST['name'] . '",
|
||||
"' . time() . $_SESSION['user']['id'] . $_POST['name'] . '"
|
||||
"' . sha1(time() . $_SESSION['user']['id'] . $_POST['name']) . '"
|
||||
)
|
||||
;');
|
||||
|
||||
|
|
Loading…
Reference in a new issue