fix encoding on gestion update (remove html_entities when updating text or label)
This commit is contained in:
parent
2ff10aa003
commit
5698e5bd70
@ -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;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user