Suppression des espaces lors du traitement des montants (montants_str2array)
authorOlivier Tétard <olivier.tetard@miskin.fr>
Mon, 7 Oct 2013 08:04:21 +0000 (10:04 +0200)
committerOlivier Tétard <olivier.tetard@miskin.fr>
Mon, 7 Oct 2013 08:05:31 +0000 (10:05 +0200)
souscription_fonctions.php

index 3d1c4aa..072b924 100644 (file)
@@ -59,7 +59,7 @@ function montants_str2array($str) {
 
   /* Vérification du format de la chaine. Elle doit être sous la forme
    * « [montant] | [label] », par exemple « 10 | 10 € ». */
-  foreach(explode("\n", $str) as $l) {
+  foreach(explode("\n", trim($str)) as $l) {
     if(!preg_match('/^[0-9]+\|.*/', $l)) {
       return false;
     }