Warning sur operateur arithmétique
J'ai ce warning qui pollue mes logs en ce moment (php 7.4).
Warning: A non-numeric value encountered in /plugins/auto/optionsproduits/v2.0.0/optionsproduits_fonctions.php on line 86
Je propose le patch suivant :
$prix_ht = intval($ligne['prix_ht']);
au lien de (ligne 30)
$prix_ht = $ligne['prix_ht'];
le +=
de la ligne 32 accepte mal une variable de type chaine.
https://git.spip.net/spip-contrib-extensions/optionsproduits/src/commit/17a33654a16bd88cd0c756a3b39aef9d9465d5d7/prix_option/produit.php#L32
Puis-je commiter direct sur le master ou dois-je passer par une branche ?