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

(-)a/members/boraccount.pl (-2 / +2 lines)
Lines 24-30 Link Here
24
24
25
use strict;
25
use strict;
26
use warnings;
26
use warnings;
27
27
use HTML::Entities;
28
use C4::Auth;
28
use C4::Auth;
29
use C4::Output;
29
use C4::Output;
30
use CGI qw ( -utf8 );
30
use CGI qw ( -utf8 );
Lines 50-55 my ($template, $loggedinuser, $cookie) = get_template_and_user( Link Here
50
);
50
);
51
51
52
my $borrowernumber=$input->param('borrowernumber');
52
my $borrowernumber=$input->param('borrowernumber');
53
$borrowernumber = HTML::Entities::encode($borrowernumber);
53
my $action = $input->param('action') || '';
54
my $action = $input->param('action') || '';
54
55
55
#get patron details
56
#get patron details
56
- 

Return to bug 19086