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
@@ -126,7 +126,7 @@ foreach ($selected_rows as $rowIndex) {
case 'Testo':
case 'VARCHAR':
default:
$fieldValue = !empty($fieldValue) ? htmlspecialchars((string)$fieldValue) : ($mapping['manual_default'] ?? '');
$fieldValue = !empty($fieldValue) ? (string)$fieldValue : ($mapping['manual_default'] ?? '');
break;
}
} else {