Lines 25-31
use CGI qw ( -utf8 );
Link Here
|
25 |
|
25 |
|
26 |
use C4::Auth; |
26 |
use C4::Auth; |
27 |
use C4::Output; |
27 |
use C4::Output; |
28 |
use C4::Dates qw/format_date/; |
28 |
use Koha::DateUtils; |
29 |
use C4::Members; |
29 |
use C4::Members; |
30 |
|
30 |
|
31 |
my $input = new CGI; |
31 |
my $input = new CGI; |
Lines 82-88
if ( $member ne '' ) {
Link Here
|
82 |
zipcode => $results->[$i]{'zipcode'}, |
82 |
zipcode => $results->[$i]{'zipcode'}, |
83 |
country => $results->[$i]{'country'}, |
83 |
country => $results->[$i]{'country'}, |
84 |
branchcode => $results->[$i]{'branchcode'}, |
84 |
branchcode => $results->[$i]{'branchcode'}, |
85 |
dateofbirth => format_date( $results->[$i]{'dateofbirth'} ), |
85 |
dateofbirth => output_pref({ dt => dt_from_string( $results->[$i]{'dateofbirth'}, , 'iso' ), dateonly => 1 }), |
86 |
borrowernotes => $results->[$i]{'borrowernotes'} |
86 |
borrowernotes => $results->[$i]{'borrowernotes'} |
87 |
); |
87 |
); |
88 |
|
88 |
|
89 |
- |
|
|