Bonjour,
Editer le fichier TPmodules.php
Rechercher les lignes:
$val = substr($what,10);
Remplacer par:
$val = (int) substr($what,10);
Explication: On extrait un champ texte que l'on place dans un champ numérique, c'est incompatible.
Hello,
Edit the file TPmodules.php
Search lignes:
$val = substr($what,10);
Replace by:
$val = (int) substr($what,10);
Explain: The code extract a string for insert into a numeric column, it's not possible.