fix: special chars in subscriptions (#271)

This commit is contained in:
Miguel Ribeiro
2024-04-09 22:38:06 +02:00
committed by GitHub
parent fe04c0f5c9
commit 2683a7c4ba
4 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -13,7 +13,7 @@
if ($row = $result->fetchArray(SQLITE3_ASSOC)) {
$subscriptionData['id'] = $subscriptionId;
$subscriptionData['name'] = $row['name'];
$subscriptionData['name'] = htmlspecialchars_decode($row['name']);
$subscriptionData['logo'] = $row['logo'];
$subscriptionData['price'] = $row['price'];
$subscriptionData['currency_id'] = $row['currency_id'];