fix encoding on gestion update (remove html_entities when updating text or label)

This commit is contained in:
Tiavina 2025-01-22 10:45:52 +03:00
parent 2ff10aa003
commit 5698e5bd70

View File

@ -1437,7 +1437,7 @@ class Bdd {
$this->update_lieu_date_devis_rang_ligneTrajet($ligne_trajet, $column, htmlentities(rtrim($data)), $idNextcloud);
} else {
$sql = "UPDATE ".$this->tableprefix.$table." SET $column = ? WHERE `id` = ?";
$this->execSQLNoData($sql, array(htmlentities(rtrim($data)), $id));
$this->execSQLNoData($sql, array(trim($data), $id));
}
return true;
}