removed htmlspecialchars on import && savings
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user