View | Details | Raw Unified | Return to bug 3498
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tmpl (-2 / +2 lines)
Lines 189-195 function moneyFormat(textObj) { Link Here
189
189
190
<form name="payfine" onsubmit="return validatePayment(this);" method="post" action="/cgi-bin/koha/members/paycollect.pl">
190
<form name="payfine" onsubmit="return validatePayment(this);" method="post" action="/cgi-bin/koha/members/paycollect.pl">
191
<input type="hidden" name="borrowernumber" id="borrowernumber" value="<!-- TMPL_VAR name="borrowernumber" -->" />
191
<input type="hidden" name="borrowernumber" id="borrowernumber" value="<!-- TMPL_VAR name="borrowernumber" -->" />
192
<input type="hidden" name="selected_accts" id="selected_accts" value="<!-- TMPL_VAR name="selected_accts" --> />
192
<input type="hidden" name="selected_accts" id="selected_accts" value="<!-- TMPL_VAR name="selected_accts" -->" />
193
<input type="hidden" name="total" id="total" value="<!-- TMPL_VAR name="total" -->" />
193
<input type="hidden" name="total" id="total" value="<!-- TMPL_VAR name="total" -->" />
194
194
195
<table>
195
<table>
Lines 215-222 function moneyFormat(textObj) { Link Here
215
</td>
215
</td>
216
</tr>
216
</tr>
217
</table>
217
</table>
218
</form>
219
<!-- /TMPL_IF -->
218
<!-- /TMPL_IF -->
219
</form>
220
</div></div>
220
</div></div>
221
221
222
</div>
222
</div>
(-)a/members/paycollect.pl (-2 / +1 lines)
Lines 112-118 if ( $total_paid and $total_paid ne '0.00' ) { Link Here
112
        }
112
        }
113
        else {
113
        else {
114
            if ($select) {
114
            if ($select) {
115
                if ( $select =~ /^([\d,]*).+/ ) {
115
                if ( $select =~ /^([\d,]*).*/ ) {
116
                    $select = $1;    # ensure passing no junk
116
                    $select = $1;    # ensure passing no junk
117
                }
117
                }
118
                my @acc = split /,/, $select;
118
                my @acc = split /,/, $select;
119
- 

Return to bug 3498