@@ -, +, @@ --- .../prog/en/modules/members/paycollect.tmpl | 4 ++-- members/paycollect.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tmpl +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tmpl @@ -189,7 +189,7 @@ function moneyFormat(textObj) {
" /> - /> +" /> " /> @@ -215,8 +215,8 @@ function moneyFormat(textObj) {
-
+ --- a/members/paycollect.pl +++ a/members/paycollect.pl @@ -112,7 +112,7 @@ if ( $total_paid and $total_paid ne '0.00' ) { } else { if ($select) { - if ( $select =~ /^([\d,]*).+/ ) { + if ( $select =~ /^([\d,]*).*/ ) { $select = $1; # ensure passing no junk } my @acc = split /,/, $select; --