removed htmlspecialchars on import && savings

This commit is contained in:
2026-03-30 13:24:18 +03:00
parent 8bae2d7008
commit fb09f033ae
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;