remove htmlspecialchars from saving

This commit is contained in:
2026-03-27 20:55:54 +03:00
parent 2a7b1fae17
commit 3e66d67dc5
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ try {
foreach ($_POST as $key => $value) {
if ($key !== 'iddatadb' && !in_array($key, $excludeFields)) {
$updates[] = "$key = ?";
$values[] = htmlspecialchars($value);
$values[] = $value;
}
}
$values[] = $iddatadb;