fix: remembered lists view
This commit is contained in:
parent
9c093c42b3
commit
a114a2554e
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class Wishlist
|
|||
$this->user = $wishlist_data['user'];
|
||||
$this->name = $wishlist_data['name'];
|
||||
$this->hash = $wishlist_data['hash'];
|
||||
$this->notification_sent = $wishlist_data['notification_sent'] ?? 0;
|
||||
$this->notification_sent = $wishlist_data['notification_sent'] ? \strtotime($wishlist_data['notification_sent']) : 0;
|
||||
}
|
||||
|
||||
public function getWishes(array $options = array('placeholders' => array())): array
|
||||
|
|
Loading…
Reference in a new issue