X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fpayment%2Fmoney.inc.php;h=ab32ff94f4e66a12117287c7fab06efbfe9ae39a;hb=8c5c6d646a25e0d90a00ea798d18e535533c4814;hp=ad19d20692849ed500a454603a94b3d7d09c4bdd;hpb=5ddeb07cc787dd1dc3630a31f1528f5cc7c4d9b9;p=platal.git diff --git a/modules/payment/money.inc.php b/modules/payment/money.inc.php index ad19d20..ab32ff9 100644 --- a/modules/payment/money.inc.php +++ b/modules/payment/money.inc.php @@ -59,9 +59,9 @@ class Payment { $v = (float)strtr($value, ',', '.'); if ($this->montant_min > $v) { - return "Montant inférieur au minimum autorisé ({$this->montant_min})."; + return "Montant inférieur au minimum autorisé ({$this->montant_min})."; } elseif ($v > $this->montant_max) { - return "Montant supérieur au maximum autorisé ({$this->montant_max})."; + return "Montant supérieur au maximum autorisé ({$this->montant_max})."; } else { return true; } @@ -121,5 +121,5 @@ class PayMethod // }}} -// vim:set et sw=4 sts=4 sws=4 foldmethod=marker: +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>