Skip to content
Snippets Groups Projects

6.38.3

Merged Laurent requested to merge 6.38.3 into master
Compare and
+ 40
11
Preferences
Compare changes
Files
@@ -146,8 +146,7 @@ class sql
: $this->statements[$table][$cols] = $this->createInsertPrepareStatement($table, $data);
foreach($data as $col => $valeur) {
$valeur = trim($valeur);
$statement->bindParam(":$col", $valeur);
$statement->bindValue(":$col", trim($valeur));
}
try {