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

(-)a/members/pay.pl (-3 / +3 lines)
Lines 43-48 use C4::Members::Attributes qw(GetBorrowerAttributes); Link Here
43
use Koha::Patron::Images;
43
use Koha::Patron::Images;
44
44
45
use Koha::Patron::Categories;
45
use Koha::Patron::Categories;
46
use URI::Escape;
46
47
47
our $input = CGI->new;
48
our $input = CGI->new;
48
49
Lines 174-181 sub redirect_to_paycollect { Link Here
174
    $redirect .= get_for_redirect( 'amount', "amount$line_no", 1 );
175
    $redirect .= get_for_redirect( 'amount', "amount$line_no", 1 );
175
    $redirect .=
176
    $redirect .=
176
      get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 );
177
      get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 );
177
    $redirect .= get_for_redirect( 'description',    "description$line_no",    0 );
178
    $redirect .= uri_escape_utf8( get_for_redirect( 'description', "description$line_no", 0 ) );
178
    $redirect .= get_for_redirect( 'title',        "title$line_no",        0 );
179
    $redirect .= uri_escape_utf8( get_for_redirect( 'title', "title$line_no", 0 ) );
179
    $redirect .= get_for_redirect( 'itemnumber',   "itemnumber$line_no",   0 );
180
    $redirect .= get_for_redirect( 'itemnumber',   "itemnumber$line_no",   0 );
180
    $redirect .= get_for_redirect( 'notify_id',    "notify_id$line_no",    0 );
181
    $redirect .= get_for_redirect( 'notify_id',    "notify_id$line_no",    0 );
181
    $redirect .= get_for_redirect( 'notify_level', "notify_level$line_no", 0 );
182
    $redirect .= get_for_redirect( 'notify_level', "notify_level$line_no", 0 );
182
- 

Return to bug 11217