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
View File
@@ -4,7 +4,6 @@ function validate($value) {
$value = trim($value);
$value = stripslashes($value);
$value = htmlspecialchars($value);
$value = htmlentities($value);
return $value;
}
+1 -1
View File
@@ -1,3 +1,3 @@
<?php
$version = "v1.20.0";
$version = "v1.20.1";
?>