Fix wishlist title

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

View file

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