Fix Undefined array key "user"
This commit is contained in:
parent
de2a551cc4
commit
4a42780db2
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ class Wishlist
|
|||
<?php if ($info->url) { ?>
|
||||
<a class="ui tiny button" href="<?= $info->url ?>" target="_blank">View</a>
|
||||
<?php } ?>
|
||||
<?php if ($this->data['user'] === $_SESSION['user']['id']) { ?>
|
||||
<?php if (isset($_SESSION['user']) && $this->data['user'] === $_SESSION['user']['id']) { ?>
|
||||
<a class="ui tiny red button delete">Delete</a>
|
||||
<?php } else { ?>
|
||||
<a class="ui tiny button commit">Commit</a>
|
||||
|
|
Loading…
Reference in a new issue