From: Olivier Tétard Date: Mon, 7 Oct 2013 08:04:21 +0000 (+0200) Subject: Suppression des espaces lors du traitement des montants (montants_str2array) X-Git-Url: http://olivier.miskin.fr/git/?a=commitdiff_plain;h=b9b8a1c42e3c6ae43b35a6ce05fd86f6ba01d515;p=spip_souscriptions.git Suppression des espaces lors du traitement des montants (montants_str2array) --- diff --git a/souscription_fonctions.php b/souscription_fonctions.php index 3d1c4aa..072b924 100644 --- a/souscription_fonctions.php +++ b/souscription_fonctions.php @@ -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; }