Fix wishlist title

This commit is contained in:
grandeljay 2023-01-28 15:49:50 +01:00
parent 4c5bafe1b2
commit c13e5d38c9

View file

@ -44,7 +44,11 @@ class Wishlist
$this->exists = true;
foreach ($columns as $key => $value) {
$this->$key = $value;
if ('string' === gettype($value)) {
$this->$key = Sanitiser::render($value);
} else {
$this->$key = $value;
}
}
} else {
return;