From: Stéphane Jacob Date: Sat, 16 Jun 2012 17:29:01 +0000 (+0200) Subject: Allows non interger amount in paiements. X-Git-Tag: xorg/1.1.6~1^2~3 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=4617190f38558ead54dae25daca3a82bc6984049;p=platal.git Allows non interger amount in paiements. Signed-off-by: Stéphane Jacob --- diff --git a/include/validations/paiements.inc.php b/include/validations/paiements.inc.php index 0214520..2bf1a72 100644 --- a/include/validations/paiements.inc.php +++ b/include/validations/paiements.inc.php @@ -135,7 +135,7 @@ Si le télépaiement n'est pas lié à un groupe ou supérieur à 51 euros, lais { $this->titre = Env::v('pay_titre'); $this->site = Env::v('pay_site'); - $this->montant = Env::i('pay_montant'); + $this->montant = Env::t('pay_montant'); $this->montant_min = Env::i('pay_montant_min'); $this->montant_max = Env::i('pay_montant_max'); $this->msg_reponse = Env::v('pay_msg_reponse');